X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=http-push.c;h=4a9dcf2bf64887735573d7c02b6b9f21ad4644f6;hb=7594c4b2d7cc81f806453402aefe1bf71ae6dd53;hp=aa0bc1f6f6a51fb39d54dc81b93805f86d19aa46;hpb=c4e05b1a2290c605e68e6dac5e2a580e6d4080b7;p=git.git diff --git a/http-push.c b/http-push.c index aa0bc1f6f..4a9dcf2bf 100644 --- a/http-push.c +++ b/http-push.c @@ -1212,7 +1212,7 @@ static void xml_start_tag(void *userData, const char *name, const char **atts) { struct xml_ctx *ctx = (struct xml_ctx *)userData; - const char *c = index(name, ':'); + const char *c = strchr(name, ':'); int new_len; if (c == NULL) @@ -1241,7 +1241,7 @@ static void xml_end_tag(void *userData, const char *name) { struct xml_ctx *ctx = (struct xml_ctx *)userData; - const char *c = index(name, ':'); + const char *c = strchr(name, ':'); char *ep; ctx->userFunc(ctx, 1); @@ -2351,7 +2351,7 @@ int main(int argc, char **argv) char *path = strstr(arg, "//"); remote->url = arg; if (path) { - path = index(path+2, '/'); + path = strchr(path+2, '/'); if (path) remote->path_len = strlen(path); } @@ -2498,6 +2498,7 @@ int main(int argc, char **argv) commit_argv[3] = old_sha1_hex; commit_argc++; } + init_revisions(&revs); setup_revisions(commit_argc, commit_argv, &revs, NULL); free(new_sha1_hex); if (old_sha1_hex) {