mktemp: make default tempfile template shorter;
authorDenis Vlasenko <vda.linux@googlemail.com>
Sun, 8 Jun 2008 20:40:33 +0000 (20:40 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Sun, 8 Jun 2008 20:40:33 +0000 (20:40 -0000)
 make help text more understandable

debianutils/mktemp.c
include/usage.h

index de27d30..c48b6e2 100644 (file)
@@ -43,7 +43,7 @@ int mktemp_main(int argc ATTRIBUTE_UNUSED, char **argv)
 
        opt_complementary = "?1"; /* 1 argument max */
        opt = getopt32(argv, "dqtp:", &path);
-       chp = argv[optind] ? argv[optind] : xstrdup("tmp.XXXXXXXXXX");
+       chp = argv[optind] ? argv[optind] : xstrdup("tmp.XXXXXX");
 
        if (opt & (4|8)) { /* -t and/or -p */
                const char *dir = getenv("TMPDIR");
index 44e6182..3eb5b48 100644 (file)
        "[-dt] [-p DIR] [TEMPLATE]"
 #define mktemp_full_usage "\n\n" \
        "Create a temporary file with name based on TEMPLATE and print its name.\n" \
-       "TEMPLATE must end with XXXXXX (i.e., /tmp/temp.XXXXXX).\n" \
+       "TEMPLATE must end with XXXXXX (e.g. [/dir/]nameXXXXXX).\n" \
      "\nOptions:" \
      "\n       -d      Make a directory instead of a file" \
 /*   "\n       -q      Fail silently if an error occurs" - we ignore it */ \