Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-10-10 19:28:41 +0400
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-10-10 19:28:41 +0400
commit1ac42bf66e2c181b886e89f9222cae65676c9e8a (patch)
treea0170e61d7a3263e725c65fa83082ef6068a99da /debianutils/mktemp.c
parentda8f43fd34d59a83ee8314dae5850db95ac1bdad (diff)
- add option -t
mkinitrd and mkinitramfs both require -t.
Diffstat (limited to 'debianutils/mktemp.c')
-rw-r--r--debianutils/mktemp.c22
1 files changed, 16 insertions, 6 deletions
diff --git a/debianutils/mktemp.c b/debianutils/mktemp.c
index 546e030b0..d47d5a0bf 100644
--- a/debianutils/mktemp.c
+++ b/debianutils/mktemp.c
@@ -18,21 +18,31 @@
int mktemp_main(int argc, char **argv)
{
- unsigned long flags = getopt32(argc, argv, "dq");
+ unsigned long flags = getopt32(argc, argv, "dqt");
+ char *chp;
if (optind + 1 != argc)
bb_show_usage();
+ chp = argv[optind];
+
+ if (flags & 4) {
+ char *dir = getenv("TMPDIR");
+ if (dir && *dir != '\0')
+ chp = concat_path_file(dir, chp);
+ else
+ chp = concat_path_file("/tmp/", chp);
+ }
+
if (flags & 1) {
- if (mkdtemp(argv[optind]) == NULL)
+ if (mkdtemp(chp) == NULL)
return EXIT_FAILURE;
- }
- else {
- if (mkstemp(argv[optind]) < 0)
+ } else {
+ if (mkstemp(chp) < 0)
return EXIT_FAILURE;
}
- puts(argv[optind]);
+ puts(chp);
return EXIT_SUCCESS;
}