From: Nick Mathewson Date: Mon, 11 Nov 2019 21:31:50 +0000 (-0500) Subject: Typo fix in warning message about ControlSocket X-Git-Tag: tor-0.4.3.1-alpha~119^2~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd8c96ce02735db83c241c26e06b9bab50a0dae4;p=thirdparty%2Ftor.git Typo fix in warning message about ControlSocket --- diff --git a/src/app/config/config.c b/src/app/config/config.c index ab40946589..edab684d7c 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -3400,7 +3400,7 @@ options_validate_cb(const void *old_options_, void *options_, char **msg) } #else /* defined(HAVE_SYS_UN_H) */ if (options->ControlSocketsGroupWritable && !options->ControlSocket) { - *msg = tor_strdup("Setting ControlSocketGroupWritable without setting" + *msg = tor_strdup("Setting ControlSocketGroupWritable without setting " "a ControlSocket makes no sense."); return -1; }