diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-05 09:38:10 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-05 09:38:10 +0000 |
commit | 690b3e58b2a19879f6e94e0f154438fdc186a117 (patch) | |
tree | ea8d8b70a6bd30607d8b411ae170ad00534391b9 | |
parent | 0c7cb0c10f41620003b81e1c53c08fc760ea3da0 (diff) |
fix return type to silence compiler warnings
-rw-r--r-- | lib/telnet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/telnet.c b/lib/telnet.c index eb96cad08..bdc354272 100644 --- a/lib/telnet.c +++ b/lib/telnet.c @@ -741,7 +741,7 @@ static void printsub(struct SessionHandle *data, } } -static int check_telnet_options(struct connectdata *conn) +static CURLcode check_telnet_options(struct connectdata *conn) { struct curl_slist *head; char option_keyword[128]; |