summaryrefslogtreecommitdiffstats
path: root/usr.bin/mktemp/mktemp.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/mktemp/mktemp.c')
-rw-r--r--usr.bin/mktemp/mktemp.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/mktemp/mktemp.c b/usr.bin/mktemp/mktemp.c
index 72b89d6..277104f 100644
--- a/usr.bin/mktemp/mktemp.c
+++ b/usr.bin/mktemp/mktemp.c
@@ -87,6 +87,11 @@ main(int argc, char **argv)
argc -= optind;
argv += optind;
+ if (!tflag && argc < 1) {
+ tflag = 1;
+ prefix = "tmp";
+ }
+
if (tflag) {
tmpdir = getenv("TMPDIR");
if (tmpdir == NULL)
@@ -100,8 +105,6 @@ main(int argc, char **argv)
else
errx(1, "cannot generate template");
}
- } else if (argc < 1) {
- usage();
}
/* generate all requested files */
OpenPOWER on IntegriCloud