diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-02-21 02:28:54 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-02-21 02:43:14 +0100 |
commit | d9d93745cd2efcdfca8f82d798e61e0ee70cef5c (patch) | |
tree | 856fb7d01ac05a700e4740f15f70684ea5253422 /src/hostname/hostnamectl.c | |
parent | 099524d7b0df690e3361ffc3fe3c6aed0558b4fc (diff) |
hostnamectl: should the sanitized arch, not the native uname() one
Diffstat (limited to 'src/hostname/hostnamectl.c')
-rw-r--r-- | src/hostname/hostnamectl.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/hostname/hostnamectl.c b/src/hostname/hostnamectl.c index afbf37db51..e455249e9e 100644 --- a/src/hostname/hostnamectl.c +++ b/src/hostname/hostnamectl.c @@ -39,6 +39,7 @@ #include "strv.h" #include "sd-id128.h" #include "virt.h" +#include "architecture.h" #include "fileio.h" static bool arg_ask_password = true; @@ -121,7 +122,9 @@ static void print_status_info(StatusInfo *i) { assert_se(uname(&u) >= 0); printf(" Kernel: %s %s\n" - " Architecture: %s\n", u.sysname, u.release, u.machine); + " Architecture: %s\n", + u.sysname, u.release, + architecture_to_string(uname_architecture())); } |