aboutsummaryrefslogtreecommitdiff
path: root/lib/smtp.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/smtp.c
parentf8b16e5ccb28065a0756937b2c79769d21b80c5f (diff)
make Curl_handler_*_proxy definition static
Diffstat (limited to 'lib/smtp.c')
-rw-r--r--lib/smtp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/smtp.c b/lib/smtp.c
index 0f34c4f9e..1e5304723 100644
--- a/lib/smtp.c
+++ b/lib/smtp.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
@@ -159,7 +159,7 @@ const struct Curl_handler Curl_handler_smtps = {
* HTTP-proxyed SMTP protocol handler.
*/
-const struct Curl_handler Curl_handler_smtp_proxy = {
+static const struct Curl_handler Curl_handler_smtp_proxy = {
"SMTP", /* scheme */
ZERO_NULL, /* setup_connection */
Curl_http, /* do_it */
@@ -182,7 +182,7 @@ const struct Curl_handler Curl_handler_smtp_proxy = {
* HTTP-proxyed SMTPS protocol handler.
*/
-const struct Curl_handler Curl_handler_smtps_proxy = {
+static const struct Curl_handler Curl_handler_smtps_proxy = {
"SMTPS", /* scheme */
ZERO_NULL, /* setup_connection */
Curl_http, /* do_it */