commit cd8c96ce02735db83c241c26e06b9bab50a0dae4 Author: Nick Mathewson nickm@torproject.org Date: Mon Nov 11 16:31:50 2019 -0500
Typo fix in warning message about ControlSocket --- src/app/config/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/app/config/config.c b/src/app/config/config.c index ab4094658..edab684d7 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; }