From 320113eae2bda4f16ffc5729911c2c58e142f808 Mon Sep 17 00:00:00 2001 From: Andrey Esin Date: Thu, 27 Aug 2009 00:18:07 +0800 Subject: get_os_compiled_date in os.h is the same function as uname(&utsbuf); utsbuf.version; But i think it is not date of compiling kernel, because lastik@llaptop:~$ uname -v #45-Ubuntu SMP Tue Jun 30 19:49:51 UTC 2009 So i have renamed it in whole project in Kernel Version. Signed-off-by: Leandro A. F. Pereira --- hardinfo2/computer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hardinfo2/computer.c') diff --git a/hardinfo2/computer.c b/hardinfo2/computer.c index 03cca574..3d5c6be4 100644 --- a/hardinfo2/computer.c +++ b/hardinfo2/computer.c @@ -416,7 +416,7 @@ gchar *callback_os() "UpdateInterval$Load Average=1000\n" "[Version]\n" "Kernel=%s\n" - "Compiled=%s\n" + "Version=%s\n" "C Library=%s\n" "Distribution=%s\n" "[Current Session]\n" @@ -429,7 +429,7 @@ gchar *callback_os() "Uptime=...\n" "Load Average=...", computer->os->kernel, - computer->os->compiled_date, + computer->os->kernel_version, computer->os->libc, computer->os->distro, computer->os->hostname, -- cgit v1.2.3