aboutsummaryrefslogtreecommitdiff
path: root/verify-pack.c
diff options
context:
space:
mode:
authorRene Scharfe <rene.scharfe@lsrfire.ath.cx>2006-08-10 17:02:30 +0200
committerJunio C Hamano <junkio@cox.net>2006-08-10 14:13:53 -0700
commit83a2b841d6b90e6f4b797df40ed3a105364574b6 (patch)
tree06b21e14a70cde595570d2b7948245b26995dbb8 /verify-pack.c
parent242abf106c6929028c2dc916504879885cd64d4d (diff)
downloadgit-83a2b841d6b90e6f4b797df40ed3a105364574b6.tar.gz
git-83a2b841d6b90e6f4b797df40ed3a105364574b6.tar.xz
Add has_extension()
The little helper has_extension() documents through its name what we are trying to do and makes sure we don't forget the underrun check. Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'verify-pack.c')
-rw-r--r--verify-pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/verify-pack.c b/verify-pack.c
index c99db9dd7..ef00204ad 100644
--- a/verify-pack.c
+++ b/verify-pack.c
@@ -10,7 +10,7 @@ static int verify_one_pack(char *arg, int verbose)
/* Should name foo.idx, but foo.pack may be named;
* convert it to foo.idx
*/
- if (!strcmp(arg + len - 5, ".pack")) {
+ if (has_extension(arg, len, ".pack")) {
strcpy(arg + len - 5, ".idx");
len--;
}