]> git.ipfire.org Git - thirdparty/git.git/commit - fast-import.c
prefixcmp(): fix-up mechanical conversion.
authorJunio C Hamano <junkio@cox.net>
Tue, 20 Feb 2007 09:54:00 +0000 (01:54 -0800)
committerJunio C Hamano <junkio@cox.net>
Wed, 21 Feb 2007 06:03:15 +0000 (22:03 -0800)
commit599065a3bb94ae9f48e3808b8fafc8443017af28
tree077a948312df0b4a1c969d251fb5fc69124bbe30
parentcc44c7655fe2dd0cfb46e841156634fe622df397
prefixcmp(): fix-up mechanical conversion.

Previous step converted use of strncmp() with literal string
mechanically even when the result is only used as a boolean:

    if (!strncmp("foo", arg, 3)) ==> if (!(-prefixcmp(arg, "foo")))

This step manually cleans them up to read:

    if (!prefixcmp(arg, "foo"))

Signed-off-by: Junio C Hamano <junkio@cox.net>
13 files changed:
builtin-archive.c
builtin-blame.c
builtin-grep.c
builtin-pack-objects.c
builtin-push.c
builtin-rerere.c
builtin-show-branch.c
builtin-tar-tree.c
daemon.c
fast-import.c
fetch-pack.c
peek-remote.c
upload-pack.c