[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Stop putting nodename in the Platform string of server desc...
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] Stop putting nodename in the Platform string of server desc...
- From: arma@xxxxxxxx (Roger Dingledine)
- Date: Wed, 6 Apr 2005 17:11:08 -0400 (EDT)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Wed, 06 Apr 2005 17:11:31 -0400
- Reply-to: or-dev@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
Update of /home2/or/cvsroot/tor/src/common
In directory moria.mit.edu:/home2/arma/work/onion/cvs/tor/src/common
Modified Files:
compat.c
Log Message:
Stop putting nodename in the Platform string of server descriptors.
It doesn't actually help, and it is confusing/upsetting some people.
Index: compat.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/common/compat.c,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- compat.c 1 Apr 2005 20:15:54 -0000 1.45
+++ compat.c 6 Apr 2005 21:11:05 -0000 1.46
@@ -605,8 +605,8 @@
#ifdef HAVE_UNAME
if (uname(&u) != -1) {
/* (linux says 0 is success, solaris says 1 is success) */
- tor_snprintf(uname_result, sizeof(uname_result), "%s %s %s",
- u.sysname, u.nodename, u.machine);
+ tor_snprintf(uname_result, sizeof(uname_result), "%s %s",
+ u.sysname, u.machine);
} else
#endif
{