From 09553f85cd97c4ad35cdf316c8e65621b9e86712 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 5 Jul 2007 19:31:49 +0000 Subject: [PATCH] 2007-07-05 Roland McGrath * strace.c (main): Fix error message for unfound -u user. From Srinivasa Ds . --- strace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strace.c b/strace.c index ce982dc6..6ee5b6a7 100644 --- a/strace.c +++ b/strace.c @@ -766,7 +766,7 @@ char *argv[]; } if ((pent = getpwnam(username)) == NULL) { fprintf(stderr, "%s: cannot find user `%s'\n", - progname, optarg); + progname, username); exit(1); } run_uid = pent->pw_uid; -- 2.40.0