From f885c543da79845113d23e9eb78798988cc0a6b6 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 6 Feb 2007 00:35:36 +0000 Subject: correct "pivot_root: pivot_root: " --- util-linux/pivot_root.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'util-linux/pivot_root.c') diff --git a/util-linux/pivot_root.c b/util-linux/pivot_root.c index 97c7fa85e..2706bd2ff 100644 --- a/util-linux/pivot_root.c +++ b/util-linux/pivot_root.c @@ -18,8 +18,10 @@ int pivot_root_main(int argc, char **argv) if (argc != 3) bb_show_usage(); - if (pivot_root(argv[1],argv[2]) < 0) - bb_perror_msg_and_die("pivot_root"); + if (pivot_root(argv[1], argv[2]) < 0) { + /* prints "pivot_root: " */ + bb_perror_nomsg_and_die(); + } return EXIT_SUCCESS; } -- cgit v1.2.3