replace has_extension with ends_with
[gitweb.git] / builtin / verify-pack.c
index 66cd2df0f878d362a86e8dbc3fcd49b0c2f64c0c..2fd29cee8d1556523014046997e4b383a5529ef5 100644 (file)
@@ -27,9 +27,9 @@ static int verify_one_pack(const char *path, unsigned int flags)
         * normalize these forms to "foo.pack" for "index-pack --verify".
         */
        strbuf_addstr(&arg, path);
-       if (has_extension(arg.buf, ".idx"))
+       if (ends_with(arg.buf, ".idx"))
                strbuf_splice(&arg, arg.len - 3, 3, "pack", 4);
-       else if (!has_extension(arg.buf, ".pack"))
+       else if (!ends_with(arg.buf, ".pack"))
                strbuf_add(&arg, ".pack", 5);
        argv[2] = arg.buf;