From 8aa0df56f65c2b30839361c7b373598a0e127826 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Wed, 6 Apr 2005 21:11:05 +0000 Subject: [PATCH] Stop putting nodename in the Platform string of server descriptors. It doesn't actually help, and it is confusing/upsetting some people. svn:r4037 --- src/common/compat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/compat.c b/src/common/compat.c index c1366a91a3..75e5db8cc7 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -605,8 +605,8 @@ get_uname(void) #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 {