From 1e098672f4a98abc2b0b387025a55e5f9821cba3 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sat, 10 Jan 2015 14:41:32 +0100 Subject: [PATCH] setarch: differentiate between "unrecognized" and "cannot set" When the provided string does not match any architecture that setarch knows about, the response stays "Unrecognized architecture", but when trying to set the specified architecture does not have any effect, then respond with "Kernel cannot set architecture to...". Signed-off-by: Benno Schulenberg --- sys-utils/setarch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-utils/setarch.c b/sys-utils/setarch.c index 8e52179377..a09625c865 100644 --- a/sys-utils/setarch.c +++ b/sys-utils/setarch.c @@ -247,7 +247,7 @@ static int set_arch(const char *pers, unsigned long options, int list) && strcmp(un.machine, "i586") && strcmp(un.machine, "i686") && strcmp(un.machine, "athlon"))) - errx(EXIT_FAILURE, _("%s: Unrecognized architecture"), pers); + errx(EXIT_FAILURE, _("Kernel cannot set architecture to %s"), pers); } return 0; } -- 2.47.2