commit | 09553f85cd97c4ad35cdf316c8e65621b9e86712 | [log] [tgz] |
---|---|---|
author | Roland McGrath <roland@redhat.com> | Thu Jul 05 19:31:49 2007 +0000 |
committer | Roland McGrath <roland@redhat.com> | Thu Jul 05 19:31:49 2007 +0000 |
tree | 38d04fcb53b566c49de223fcdd25baa05bffda47 | |
parent | c9024cc3759a01c8c9df0af046900b14995e17b8 [diff] [blame] |
2007-07-05 Roland McGrath <roland@redhat.com> * strace.c (main): Fix error message for unfound -u user. From Srinivasa Ds <srinivasa@in.ibm.com>.
diff --git a/strace.c b/strace.c index ce982dc..6ee5b6a 100644 --- a/strace.c +++ b/strace.c
@@ -766,7 +766,7 @@ } if ((pent = getpwnam(username)) == NULL) { fprintf(stderr, "%s: cannot find user `%s'\n", - progname, optarg); + progname, username); exit(1); } run_uid = pent->pw_uid;