aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2010-01-25 23:41:02 +0000
committerYang Tse <yangsita@gmail.com>2010-01-25 23:41:02 +0000
commit340ab2f87f22a22a9a7c92391e1a1a62c61b5bb2 (patch)
tree7eed46ee6e98c1f287b62f4fbc7d3330191a8092 /lib/ftp.c
parentf8b16e5ccb28065a0756937b2c79769d21b80c5f (diff)
make Curl_handler_*_proxy definition static
Diffstat (limited to 'lib/ftp.c')
-rw-r--r--lib/ftp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 45503ccf5..00b1a8ef2 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -201,7 +201,7 @@ const struct Curl_handler Curl_handler_ftps = {
* HTTP-proxyed FTP protocol handler.
*/
-const struct Curl_handler Curl_handler_ftp_proxy = {
+static const struct Curl_handler Curl_handler_ftp_proxy = {
"FTP", /* scheme */
ZERO_NULL, /* setup_connection */
Curl_http, /* do_it */
@@ -224,7 +224,7 @@ const struct Curl_handler Curl_handler_ftp_proxy = {
* HTTP-proxyed FTPS protocol handler.
*/
-const struct Curl_handler Curl_handler_ftps_proxy = {
+static const struct Curl_handler Curl_handler_ftps_proxy = {
"FTPS", /* scheme */
ZERO_NULL, /* setup_connection */
Curl_http, /* do_it */