Skip to content

Commit

Permalink
fix populate-filespec
Browse files Browse the repository at this point in the history
I hand munged the original patch when committing 1510fea, and
screwed up the conversion.

Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Junio C Hamano committed Dec 20, 2006
1 parent c6b4fa9 commit 5caf923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diff.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5caf923

Please sign in to comment.