diff options
Diffstat (limited to 'coreutils/mktemp.c')
-rw-r--r-- | coreutils/mktemp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/coreutils/mktemp.c b/coreutils/mktemp.c index 944eb0e06..d4ff883fa 100644 --- a/coreutils/mktemp.c +++ b/coreutils/mktemp.c | |||
@@ -80,8 +80,7 @@ int mktemp_main(int argc UNUSED_PARAM, char **argv) | |||
80 | if (!path || path[0] == '\0') | 80 | if (!path || path[0] == '\0') |
81 | path = "/tmp"; | 81 | path = "/tmp"; |
82 | 82 | ||
83 | opt_complementary = "?1"; /* 1 argument max */ | 83 | opts = getopt32(argv, "^" "dqtp:u" "\0" "?1"/*1 arg max*/, &path); |
84 | opts = getopt32(argv, "dqtp:u", &path); | ||
85 | 84 | ||
86 | chp = argv[optind]; | 85 | chp = argv[optind]; |
87 | if (!chp) { | 86 | if (!chp) { |