diff options
author | Junio C Hamano <junkio@cox.net> | 2006-12-19 18:26:48 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-19 21:33:24 -0800 |
commit | 5caf92322303a0942e0cee5a93cb24f2d8d44022 (patch) | |
tree | f9ed62761779161cb6cf413e3494fd37bb5ca994 /diff.c | |
parent | c6b4fa96cbb65036b36e19b4dd61c7030e457327 (diff) | |
download | git-5caf92322303a0942e0cee5a93cb24f2d8d44022.tar.gz git-5caf92322303a0942e0cee5a93cb24f2d8d44022.tar.xz |
fix populate-filespec
I hand munged the original patch when committing 1510fea78, and
screwed up the conversion.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diff.c')
-rw-r--r-- | diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1223,7 +1223,7 @@ static int reuse_worktree_file(const char *name, const unsigned char *sha1, int * objects however would tend to be slower as they need * to be individually opened and inflated. */ - if (FAST_WORKING_DIRECTORY && !want_file && has_sha1_pack(sha1, NULL)) + if (!FAST_WORKING_DIRECTORY && !want_file && has_sha1_pack(sha1, NULL)) return 0; len = strlen(name); |