aboutsummaryrefslogtreecommitdiff
path: root/lib/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/file.c')
-rw-r--r--lib/file.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/file.c b/lib/file.c
index d8a3420c0..6d4ae9892 100644
--- a/lib/file.c
+++ b/lib/file.c
@@ -104,16 +104,16 @@ static CURLcode Curl_file_done(struct connectdata *conn,
const struct Curl_handler Curl_handler_file = {
"FILE", /* scheme */
- NULL, /* setup_connection */
+ ZERO_NULL, /* setup_connection */
Curl_file, /* do_it */
Curl_file_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 */
0, /* defport */
PROT_FILE /* protocol */
};