From: Steven Hazel Date: Wed, 22 Oct 2003 17:25:58 +0000 (+0000) Subject: switch_id() no longer tries to log the user name when it's calld on X-Git-Tag: tor-0.0.2pre14~191 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4fef6f456603099bd5331b8f2cb2da3734de5c98;p=thirdparty%2Ftor.git switch_id() no longer tries to log the user name when it's calld on Windows, since we don't know whether it's the user or the group that was set. svn:r659 --- diff --git a/src/common/util.c b/src/common/util.c index 1db8989a3f..a85e22ae8a 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -630,8 +630,7 @@ int switch_id(char *user, char *group) { #endif log_fn(LOG_ERR, - "User '%s' specified, but switching users is not supported.", - user); + "User or group specified, but switching users is not supported."); return -1; }