浏览代码

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 22 年之前
父节点
当前提交
4fef6f4566
共有 1 个文件被更改,包括 1 次插入2 次删除
  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;
 }