aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2006-11-06 18:27:25 +0000
committerYang Tse <yangsita@gmail.com>2006-11-06 18:27:25 +0000
commit69f7d0a0ce2a50f8a69781f526aed48bbc4f04af (patch)
treef63a5358b510644ce32e63e207c8f73bfdd251de
parentd1c84705ec4eeafe816f8b752a4ba8346cbdf66f (diff)
compiler warning fix
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 73b9debbe..2791c718c 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -3246,7 +3246,7 @@ static CURLcode CreateConnection(struct SessionHandle *data,
conn->curl_connect = Curl_scp_connect; /* ssh_connect? */
conn->curl_do = Curl_scp_do;
conn->curl_done = Curl_scp_done;
- conn->curl_do_more = (Curl_do_more_func)NULL;
+ conn->curl_do_more = (Curl_do_more_func)ZERO_NULL;
#else
failf(data, LIBCURL_NAME
" was built without LIBSSH2, scp: not supported!");