Merge branch 'mm/mv-file-to-no-such-dir-with-slash'
[gitweb.git] / builtin / repack.c
index 91e2363c7172ae3db9304e1490234b2b4cfbe381..ba66c6e37782fcf1bad53b7986e69ec113c4521c 100644 (file)
@@ -78,7 +78,7 @@ static void get_non_kept_pack_filenames(struct string_list *fname_list)
                return;
 
        while ((e = readdir(dir)) != NULL) {
-               if (suffixcmp(e->d_name, ".pack"))
+               if (!ends_with(e->d_name, ".pack"))
                        continue;
 
                len = strlen(e->d_name) - strlen(".pack");