aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/160-tar_fix.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2005-12-15 11:08:30 +0000
committerImre Kaloz <kaloz@openwrt.org>2005-12-15 11:08:30 +0000
commit19b3588489699171505bd3f68af51e9920552e28 (patch)
treecb0c8a6644bf375b1bf07c2fb323fed9c09f3211 /package/busybox/patches/160-tar_fix.patch
parentee2366d7110e5c2e5575f844bc4e2a7fb0bf1b18 (diff)
downloadmaster-187ad058-19b3588489699171505bd3f68af51e9920552e28.tar.gz
master-187ad058-19b3588489699171505bd3f68af51e9920552e28.tar.bz2
master-187ad058-19b3588489699171505bd3f68af51e9920552e28.zip
upgrade busybox to v1.1.0-pre1
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2687 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/patches/160-tar_fix.patch')
-rw-r--r--package/busybox/patches/160-tar_fix.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/package/busybox/patches/160-tar_fix.patch b/package/busybox/patches/160-tar_fix.patch
deleted file mode 100644
index 32358cf659..0000000000
--- a/package/busybox/patches/160-tar_fix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- busybox-1.00/archival/tar.c.orig 2005-08-13 12:41:09.000000000 +0200
-+++ busybox-1.00/archival/tar.c 2005-08-13 12:39:50.000000000 +0200
-@@ -798,7 +798,7 @@
- /* TODO: This is the same as in ar, separate function ? */
- while (optind < argc) {
- char *filename_ptr = last_char_is(argv[optind], '/');
-- if (filename_ptr) {
-+ if (argv[optind] != filename_ptr && filename_ptr) {
- *filename_ptr = '\0';
- }
- tar_handle->accept = llist_add_to(tar_handle->accept, argv[optind]);