From 340ab2f87f22a22a9a7c92391e1a1a62c61b5bb2 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Mon, 25 Jan 2010 23:41:02 +0000 Subject: make Curl_handler_*_proxy definition static --- lib/smtp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/smtp.c') 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, , et al. + * Copyright (C) 1998 - 2010, Daniel Stenberg, , 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 */ -- cgit v1.2.3