From: Jason Ackley Date: Mon, 23 Oct 2017 04:50:48 +0000 (-0500) Subject: Correct typo and expand an error message when the virtual server lacks the namespace... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8fc4bf3551201953819edb8bf2db29c5f1534432;p=thirdparty%2Ffreeradius-server.git Correct typo and expand an error message when the virtual server lacks the namespace setting --- diff --git a/src/main/virtual_servers.c b/src/main/virtual_servers.c index d599c8d9727..128ec05e4c3 100644 --- a/src/main/virtual_servers.c +++ b/src/main/virtual_servers.c @@ -501,7 +501,7 @@ int virtual_servers_bootstrap(CONF_SECTION *config) * Forbid old-style virtual servers. */ if (!cf_pair_find(cs, "namespace")) { - cf_log_err(cs, "server %s { ...} section must set 'namesspace = ...'", server_name); + cf_log_err(cs, "server %s { ...} section must set 'namespace = ...' to define the server protocol", server_name); return -1; } }