diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2013-03-12 19:09:24 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2013-03-12 19:09:24 +0000 |
commit | 6912624cc4a2b9c4391246a9e6bdfa47f1d2bc7e (patch) | |
tree | c95916f0380615461c0fc5e78ac85d48252869d9 /usr.bin | |
parent | bef6134b39213defccdc1f14d6dca564b2f970f4 (diff) |
warnx() not warningx(), too much sudo on the brain
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/mktemp/mktemp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mktemp/mktemp.c b/usr.bin/mktemp/mktemp.c index e23ebfe46a0..c0849627ec4 100644 --- a/usr.bin/mktemp/mktemp.c +++ b/usr.bin/mktemp/mktemp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mktemp.c,v 1.16 2013/03/12 15:07:12 millert Exp $ */ +/* $OpenBSD: mktemp.c,v 1.17 2013/03/12 19:09:23 millert Exp $ */ /* * Copyright (c) 1996, 1997, 2001-2003, 2013 @@ -89,7 +89,7 @@ main(int argc, char *argv[]) len = strlen(template); if (len < 6 || strcmp(&template[len - 6], "XXXXXX")) { if (!quiet) { - warningx("insufficient number of Xs in template `%s'", + warnx("insufficient number of Xs in template `%s'", template); } exit(1); |