check_filename(): use skip_prefix
[gitweb.git] / setup.c
diff --git a/setup.c b/setup.c
index 000ffa810e1d24f78989f3a720c32724122ffd47..f2a8070bd4d9c9fb0117f87fdadc208d86e07e2b 100644 (file)
--- a/setup.c
+++ b/setup.c
@@ -137,10 +137,9 @@ int check_filename(const char *prefix, const char *arg)
        char *to_free = NULL;
        struct stat st;
 
-       if (starts_with(arg, ":/")) {
-               if (arg[2] == '\0') /* ":/" is root dir, always exists */
+       if (skip_prefix(arg, ":/", &arg)) {
+               if (!*arg) /* ":/" is root dir, always exists */
                        return 1;
-               arg += 2;
                prefix = NULL;
        }