X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=http-push.c;h=994ee90035c4ae5e055df79cea8621d294190a3f;hb=ef9e58c826a4fcaa13457cd8177518163f82972a;hp=57cefdea530171c71c72229a85aa0212dedb2c5a;hpb=40d88d4fa3b13c0e7fe8eca23ff6d27e790bada2;p=git.git diff --git a/http-push.c b/http-push.c index 57cefdea..994ee900 100644 --- a/http-push.c +++ b/http-push.c @@ -1211,7 +1211,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) @@ -1240,7 +1240,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); @@ -2350,7 +2350,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); }