summaryrefslogtreecommitdiff
path: root/git-compat-util.h
diff options
context:
space:
mode:
Diffstat (limited to 'git-compat-util.h')
-rw-r--r--git-compat-util.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/git-compat-util.h b/git-compat-util.h
index b72a80d8ae..59265affd8 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -356,8 +356,11 @@ extern int suffixcmp(const char *str, const char *suffix);
static inline const char *skip_prefix_defval(const char *str, const char *prefix, const char *defval)
{
- size_t len = strlen(prefix);
- return strncmp(str, prefix, len) ? defval : str + len;
+ for ( ; ; str++, prefix++)
+ if (!*prefix)
+ return str;
+ else if (*str != *prefix)
+ return defval;
}
static inline const char *skip_prefix(const char *str, const char *prefix)