From: Thomas Weißschuh Date: Sun, 25 Jun 2023 11:28:19 +0000 (+0200) Subject: unshare: fix error message for unexpected time offsets X-Git-Tag: v2.40-rc1~367^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2da02003274d7961030b815588c24ac15458e371;p=thirdparty%2Futil-linux.git unshare: fix error message for unexpected time offsets Signed-off-by: Thomas Weißschuh --- diff --git a/sys-utils/unshare.c b/sys-utils/unshare.c index 13aefa96c4..3ff4137c84 100644 --- a/sys-utils/unshare.c +++ b/sys-utils/unshare.c @@ -914,7 +914,7 @@ int main(int argc, char *argv[]) if ((force_monotonic || force_boottime) && !(unshare_flags & CLONE_NEWTIME)) errx(EXIT_FAILURE, _("options --monotonic and --boottime require " - "unsharing of a time namespace (-t)")); + "unsharing of a time namespace (-T)")); /* clear any inherited settings */ signal(SIGCHLD, SIG_DFL);