]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
switch_id() no longer tries to log the user name when it's calld on
authorSteven Hazel <sah@freehaven.net>
Wed, 22 Oct 2003 17:25:58 +0000 (17:25 +0000)
committerSteven Hazel <sah@freehaven.net>
Wed, 22 Oct 2003 17:25:58 +0000 (17:25 +0000)
Windows, since we don't know whether it's the user or the group that
was set.

svn:r659

src/common/util.c

index 1db8989a3f753ed08206d3689c0d58c2820a1555..a85e22ae8a03d0a56baf6afcb5d4f51acce56425 100644 (file)
@@ -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;
 }