From be93a6b5162f42f5a1cae9a010b5d93830654dfb Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Wed, 18 Feb 2004 21:23:50 +0000 Subject: [PATCH] patch from vicman to publish less platform information svn:r1111 --- trunk/src/common/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trunk/src/common/util.c b/trunk/src/common/util.c index 98b16a59ba..a39da78edb 100644 --- a/trunk/src/common/util.c +++ b/trunk/src/common/util.c @@ -683,8 +683,8 @@ get_uname(void) if (!uname_result_is_set) { #ifdef HAVE_UNAME if (!uname((&u))) { - snprintf(uname_result, 255, "%s %s %s %s %s", - u.sysname, u.nodename, u.release, u.version, u.machine); + snprintf(uname_result, 255, "%s %s %s", + u.sysname, u.nodename, u.machine); uname_result[255] = '\0'; } else #endif