aboutsummaryrefslogtreecommitdiff
path: root/lib/telnet.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/telnet.c')
-rw-r--r--lib/telnet.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/telnet.c b/lib/telnet.c
index b7c470125..03d5e4df0 100644
--- a/lib/telnet.c
+++ b/lib/telnet.c
@@ -181,16 +181,16 @@ struct TELNET {
const struct Curl_handler Curl_handler_telnet = {
"TELNET", /* scheme */
- NULL, /* setup_connection */
+ ZERO_NULL, /* setup_connection */
Curl_telnet, /* do_it */
Curl_telnet_done, /* done */
- NULL, /* do_more */
- NULL, /* connect_it */
- NULL, /* connecting */
- NULL, /* doing */
- NULL, /* proto_getsock */
- NULL, /* doing_getsock */
- NULL, /* disconnect */
+ ZERO_NULL, /* do_more */
+ ZERO_NULL, /* connect_it */
+ ZERO_NULL, /* connecting */
+ ZERO_NULL, /* doing */
+ ZERO_NULL, /* proto_getsock */
+ ZERO_NULL, /* doing_getsock */
+ ZERO_NULL, /* disconnect */
PORT_TELNET, /* defport */
PROT_TELNET /* protocol */
};