changeset 1226:b72a5e74833f

Remove patch that current busybox doesn't need.
author Rob Landley <rob@landley.net>
date Mon, 23 Aug 2010 12:21:53 -0500
parents 39fda120621c
children b4857125acb0
files sources/patches/busybox-1.17.1-mktemp.patch
diffstat 1 files changed, 0 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/sources/patches/busybox-1.17.1-mktemp.patch	Mon Aug 23 00:28:41 2010 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-# The first bugfix wasn't sufficient for mktemp subdir/filename.XXXXXX
-
-diff -ru busybox/debianutils/mktemp.c busybox.new/debianutils/mktemp.c
---- busybox/debianutils/mktemp.c	2010-07-24 17:12:56.000000000 -0500
-+++ busybox.new/debianutils/mktemp.c	2010-07-26 16:20:05.000000000 -0500
-@@ -50,7 +50,7 @@
- 	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 */