Browse Source

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

Steven Hazel 20 years ago
parent
commit
4fef6f4566
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/common/util.c

+ 1 - 2
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;
 }