summaryrefslogtreecommitdiff
path: root/src/hostname
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2014-02-21 02:28:54 +0100
committerLennart Poettering <lennart@poettering.net>2014-02-21 02:43:14 +0100
commitd9d93745cd2efcdfca8f82d798e61e0ee70cef5c (patch)
tree856fb7d01ac05a700e4740f15f70684ea5253422 /src/hostname
parent099524d7b0df690e3361ffc3fe3c6aed0558b4fc (diff)
hostnamectl: should the sanitized arch, not the native uname() one
Diffstat (limited to 'src/hostname')
-rw-r--r--src/hostname/hostnamectl.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/hostname/hostnamectl.c b/src/hostname/hostnamectl.c
index afbf37db5..e455249e9 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()));
}