summaryrefslogtreecommitdiff
path: root/diff-cache.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-05-28 09:53:43 (GMT)
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-29 18:42:29 (GMT)
commite25de75696dc99f327c8dd8e2cba937939e281ca (patch)
tree9c70871ec9f2240bb268c078574492675599f748 /diff-cache.c
parent6af1f0192ff8740fe77db7cf02c739ccfbdf119c (diff)
downloadgit-e25de75696dc99f327c8dd8e2cba937939e281ca.zip
git-e25de75696dc99f327c8dd8e2cba937939e281ca.tar.gz
git-e25de75696dc99f327c8dd8e2cba937939e281ca.tar.bz2
[PATCH] Pickaxe fixes.
A bug in the command line argument parsing code was making pickaxe not to work at all in diff-cache and diff-files commands. Embarrassingly enough, the working pickaxe in diff-tree tells me that it was not working in these two commands from day one. This patch fixes it. Also updates the documentation to describe the --pickaxe-all option. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'diff-cache.c')
-rw-r--r--diff-cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/diff-cache.c b/diff-cache.c
index 66e7bdb..1e0fda5 100644
--- a/diff-cache.c
+++ b/diff-cache.c
@@ -206,7 +206,7 @@ int main(int argc, const char **argv)
diff_setup_opt |= DIFF_SETUP_REVERSE;
continue;
}
- if (!strcmp(arg, "-S")) {
+ if (!strncmp(arg, "-S", 2)) {
pickaxe = arg + 2;
continue;
}