aboutsummaryrefslogtreecommitdiff
path: root/lib/imap.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/imap.c
parentf8b16e5ccb28065a0756937b2c79769d21b80c5f (diff)
make Curl_handler_*_proxy definition static
Diffstat (limited to 'lib/imap.c')
-rw-r--r--lib/imap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/imap.c b/lib/imap.c
index fab6c4dde..2920a0177 100644
--- a/lib/imap.c
+++ b/lib/imap.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -160,7 +160,7 @@ const struct Curl_handler Curl_handler_imaps = {
* HTTP-proxyed IMAP protocol handler.
*/
-const struct Curl_handler Curl_handler_imap_proxy = {
+static const struct Curl_handler Curl_handler_imap_proxy = {
"IMAP", /* scheme */
ZERO_NULL, /* setup_connection */
Curl_http, /* do_it */
@@ -183,7 +183,7 @@ const struct Curl_handler Curl_handler_imap_proxy = {
* HTTP-proxyed IMAPS protocol handler.
*/
-const struct Curl_handler Curl_handler_imaps_proxy = {
+static const struct Curl_handler Curl_handler_imaps_proxy = {
"IMAPS", /* scheme */
ZERO_NULL, /* setup_connection */
Curl_http, /* do_it */