diff options
author | Steven Hazel <sah@freehaven.net> | 2003-10-22 17:25:58 +0000 |
---|---|---|
committer | Steven Hazel <sah@freehaven.net> | 2003-10-22 17:25:58 +0000 |
commit | 4fef6f456603099bd5331b8f2cb2da3734de5c98 (patch) | |
tree | df01676d989e51bd86f94b8a77f148b907ca38b3 /src/common | |
parent | 7604cfe61b7ae997c850bdc175b9e4e9684d020c (diff) | |
download | tor-4fef6f456603099bd5331b8f2cb2da3734de5c98.tar tor-4fef6f456603099bd5331b8f2cb2da3734de5c98.tar.gz |
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
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/util.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/util.c b/src/common/util.c index 1db8989a3..a85e22ae8 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; } |