summaryrefslogtreecommitdiffstats
path: root/package/busybox
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-08-22 00:30:47 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-08-22 00:30:47 +0000
commit83294b2de4522a8a1c54b5fc6f3a25a1edffde28 (patch)
treedf3508fe23b26a8d8de7d7e55808ecffc45f74b4 /package/busybox
parenta125d0f775e6b9bf972eda7e9d05312a2ff20f63 (diff)
add fix for tar command line (thx matled)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1714 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox')
-rw-r--r--package/busybox/patches/160-tar_fix.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/package/busybox/patches/160-tar_fix.patch b/package/busybox/patches/160-tar_fix.patch
new file mode 100644
index 000000000..32358cf65
--- /dev/null
+++ b/package/busybox/patches/160-tar_fix.patch
@@ -0,0 +1,11 @@
+--- 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]);