| author | Junio C Hamano <junkio@cox.net> | |
| Tue, 20 Feb 2007 09:54:00 +0000 (01:54 -0800) | ||
| committer | Junio C Hamano <junkio@cox.net> | |
| Wed, 21 Feb 2007 06:03:15 +0000 (22:03 -0800) | ||
| commit | 599065a3bb94ae9f48e3808b8fafc8443017af28 | |
| tree | 077a948312df0b4a1c969d251fb5fc69124bbe30 | tree | snapshot |
| parent | cc44c7655fe2dd0cfb46e841156634fe622df397 | commit | diff |
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>
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 | diff | blob | history | |
| builtin-blame.c | diff | blob | history | |
| builtin-grep.c | diff | blob | history | |
| builtin-pack-objects.c | diff | blob | history | |
| builtin-push.c | diff | blob | history | |
| builtin-rerere.c | diff | blob | history | |
| builtin-show-branch.c | diff | blob | history | |
| builtin-tar-tree.c | diff | blob | history | |
| daemon.c | diff | blob | history | |
| fast-import.c | diff | blob | history | |
| fetch-pack.c | diff | blob | history | |
| peek-remote.c | diff | blob | history | |
| upload-pack.c | diff | blob | history |