diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-12-08 22:50:55 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-12-08 22:50:55 +0000 |
commit | 662bee71930fc30ef3fe43077bf696def44c5c7b (patch) | |
tree | d9e735f57baf929da6506bd6f8eac926b9b0363b /lib/dict.c | |
parent | f8172f85b1c09554fc4134c4fc972bcfe4c7a9aa (diff) | |
download | curl-662bee71930fc30ef3fe43077bf696def44c5c7b.tar.gz |
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.
Diffstat (limited to 'lib/dict.c')
-rw-r--r-- | lib/dict.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; |