From e2c3486a60723b4c00131496b0c6ef1331333222 Mon Sep 17 00:00:00 2001 From: "Alexandros C. Couloumbis" Date: Sun, 15 Aug 2010 09:53:21 +0000 Subject: package/busybox: update to busybox-1.7.1, include upstream patches git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22659 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/busybox/patches/920-mktemp.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 package/busybox/patches/920-mktemp.patch (limited to 'package/busybox/patches/920-mktemp.patch') diff --git a/package/busybox/patches/920-mktemp.patch b/package/busybox/patches/920-mktemp.patch new file mode 100644 index 0000000000..7116b1ee6a --- /dev/null +++ b/package/busybox/patches/920-mktemp.patch @@ -0,0 +1,11 @@ +--- a/debianutils/mktemp.ci ++++ b/debianutils/mktemp.c +@@ -50,7 +50,7 @@ int mktemp_main(int argc UNUSED_PARAM, c + opts = getopt32(argv, "dqtp:", &path); + + chp = argv[optind] ? argv[optind] : xstrdup("tmp.XXXXXX"); +- if (chp[0] != '/' || (opts & 8)) ++ if (!strchr(chp, '/') || (opts & 8)) + chp = concat_path_file(path, chp); + + if (opts & 1) { /* -d */ -- cgit v1.2.3