From 662bee71930fc30ef3fe43077bf696def44c5c7b Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 8 Dec 2007 22:50:55 +0000 Subject: All static functions that were previously name Curl_* something no longer use that prefix as we use that prefix only for library-wide internal global symbols. --- lib/dict.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/dict.c') diff --git a/lib/dict.c b/lib/dict.c index 0838909bd..cf5d7d674 100644 --- a/lib/dict.c +++ b/lib/dict.c @@ -87,7 +87,7 @@ * Forward declarations. */ -static CURLcode Curl_dict(struct connectdata *conn, bool *done); +static CURLcode dict_do(struct connectdata *conn, bool *done); /* * DICT protocol handler. @@ -96,7 +96,7 @@ static CURLcode Curl_dict(struct connectdata *conn, bool *done); const struct Curl_handler Curl_handler_dict = { "DICT", /* scheme */ ZERO_NULL, /* setup_connection */ - Curl_dict, /* do_it */ + dict_do, /* do_it */ ZERO_NULL, /* done */ ZERO_NULL, /* do_more */ ZERO_NULL, /* connect_it */ @@ -142,7 +142,7 @@ static char *unescape_word(struct SessionHandle *data, const char *inp) return dictp; } -static CURLcode Curl_dict(struct connectdata *conn, bool *done) +static CURLcode dict_do(struct connectdata *conn, bool *done) { char *word; char *eword; -- cgit v1.2.3