diff options
author | YOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org> | 2005-11-22 12:18:23 +0900 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-21 20:51:22 -0800 |
commit | c3df8568424684bbcc7df7722eb3ec34bdae8b2d (patch) | |
tree | 05b4f5e6e3fee20f2e367a3ab8df55181b3c925c /connect.c | |
parent | d6ebd2590cb427a564a7bc21f893b238ce26e26f (diff) | |
download | git-c3df8568424684bbcc7df7722eb3ec34bdae8b2d.tar.gz |
GIT: Fix compilation error in connect.c
Fix compilation error for gcc-2.95.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'connect.c')
-rw-r--r-- | connect.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -455,6 +455,10 @@ static int rhost_len; static int git_proxy_command_options(const char *var, const char *value) { if (!strcmp(var, "core.gitproxy")) { + const char *for_pos; + int matchlen = -1; + int hostlen; + if (git_proxy_command) return 0; /* [core] @@ -463,10 +467,7 @@ static int git_proxy_command_options(const char *var, const char *value) * gitproxy = netcatter-2 for sample.xz * gitproxy = netcatter-default */ - const char *for_pos = strstr(value, " for "); - int matchlen = -1; - int hostlen; - + for_pos = strstr(value, " for "); if (!for_pos) /* matches everybody */ matchlen = strlen(value); |