summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3dfaf7b)
raw | patch | inline | side by side (parent: 3dfaf7b)
author | Nick Hengeveld <nickh@reactrix.com> | |
Mon, 20 Mar 2006 19:50:51 +0000 (11:50 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Mon, 20 Mar 2006 22:38:58 +0000 (14:38 -0800) |
Declare remote_dir_exists[] as signed char to be sure that values of -1
are valid.
Signed-off-by: Nick Hengeveld <nickh@reactrix.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
are valid.
Signed-off-by: Nick Hengeveld <nickh@reactrix.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
http-push.c | patch | blob | history |
diff --git a/http-push.c b/http-push.c
index e44310f5a8115011eafce41362d1752c4ee0f72f..b35d400ee1a2e8b5c97ca6ad82f6d91818519456 100644 (file)
--- a/http-push.c
+++ b/http-push.c
static int pushing = 0;
static int aborted = 0;
-static char remote_dir_exists[256];
+static signed char remote_dir_exists[256];
static struct curl_slist *no_pragma_header;
static struct curl_slist *default_headers;