From: Nick Mathewson Date: Mon, 7 May 2012 14:57:59 +0000 (-0400) Subject: Fix comments: There is no such thing as a NUL pointer X-Git-Tag: tor-0.2.3.16-alpha~94^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=39e69a0a8c9147f140de327b20ba44619297e738;p=thirdparty%2Ftor.git Fix comments: There is no such thing as a NUL pointer --- diff --git a/src/or/config.c b/src/or/config.c index bfed4e5db4..ab4f160bf2 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -5099,7 +5099,7 @@ parse_client_transport_line(const char *line, int validate_only) *tmp++ = smartlist_get(items, 2); smartlist_del_keeporder(items, 2); } - *tmp = NULL; /*terminated with NUL pointer, just like execve() likes it*/ + *tmp = NULL; /*terminated with NULL, just like execve() likes it*/ /* kickstart the thing */ pt_kickstart_client_proxy(transport_list, proxy_argv); @@ -5222,7 +5222,7 @@ parse_server_transport_line(const char *line, int validate_only) *tmp++ = smartlist_get(items, 2); smartlist_del_keeporder(items, 2); } - *tmp = NULL; /*terminated with NUL pointer, just like execve() likes it*/ + *tmp = NULL; /*terminated with NULL, just like execve() likes it*/ /* kickstart the thing */ pt_kickstart_server_proxy(transport_list, proxy_argv);