[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] switch_id() no longer tries to log the user name when it"s ...
- To: or-cvs@freehaven.net
- Subject: [or-cvs] switch_id() no longer tries to log the user name when it"s ...
- From: sah@seul.org (Steven Hazel)
- Date: Wed, 22 Oct 2003 13:26:00 -0400 (EDT)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Wed, 22 Oct 2003 13:26:07 -0400
- Reply-to: or-dev@freehaven.net
- Sender: owner-or-cvs@freehaven.net
Update of /home/or/cvsroot/src/common
In directory moria.mit.edu:/home/sah/tor/src/common
Modified Files:
util.c
Log Message:
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.
Index: util.c
===================================================================
RCS file: /home/or/cvsroot/src/common/util.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- util.c 22 Oct 2003 11:21:29 -0000 1.34
+++ util.c 22 Oct 2003 17:25:58 -0000 1.35
@@ -630,8 +630,7 @@
#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;
}