aboutsummaryrefslogtreecommitdiff
path: root/peek-remote.c
diff options
context:
space:
mode:
Diffstat (limited to 'peek-remote.c')
-rw-r--r--peek-remote.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/peek-remote.c b/peek-remote.c
index ef3c76ce5..7b66228a2 100644
--- a/peek-remote.c
+++ b/peek-remote.c
@@ -35,11 +35,11 @@ int main(int argc, char **argv)
char *arg = argv[i];
if (*arg == '-') {
- if (!strncmp("--upload-pack=", arg, 14)) {
+ if (!(-prefixcmp(arg, "--upload-pack="))) {
uploadpack = arg + 14;
continue;
}
- if (!strncmp("--exec=", arg, 7)) {
+ if (!(-prefixcmp(arg, "--exec="))) {
uploadpack = arg + 7;
continue;
}