diff options
author | Roger Dingledine <arma@torproject.org> | 2004-02-18 21:23:50 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-02-18 21:23:50 +0000 |
commit | f202d381910c79401eecf03cadc0c406e5bef107 (patch) | |
tree | 2eea37ed78b4ca07ace187411e1925ea49b34dcd /src | |
parent | 8c1ee2f2d2afb3a74f51276608ab725ded981bec (diff) | |
download | tor-f202d381910c79401eecf03cadc0c406e5bef107.tar tor-f202d381910c79401eecf03cadc0c406e5bef107.tar.gz |
patch from vicman to publish less platform information
svn:r1111
Diffstat (limited to 'src')
-rw-r--r-- | src/common/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/util.c b/src/common/util.c index 98b16a59b..a39da78ed 100644 --- a/src/common/util.c +++ b/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 |