X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=http-push.c;h=19a0f772e7bf729755c66ab38f5dfb64ae784f00;hb=cbdda024049947366804d60bdc5e5fc3ab3ee3a5;hp=aa0bc1f6f6a51fb39d54dc81b93805f86d19aa46;hpb=c4e05b1a2290c605e68e6dac5e2a580e6d4080b7;p=git.git diff --git a/http-push.c b/http-push.c index aa0bc1f6..19a0f772 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); }