busybox: add various patches for busybox-1.15.0

This commit is contained in:
Stephan Raue 2009-08-30 21:19:24 +02:00
parent 725463072b
commit a8975a9871
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,12 @@
diff -Naur busybox-1.15.0/networking/telnetd.c busybox-1.15.0a/networking/telnetd.c
--- busybox-1.15.0/networking/telnetd.c 2009-08-21 00:26:14.000000000 +0200
+++ busybox-1.15.0a/networking/telnetd.c 2009-08-30 11:38:57.000000000 +0200
@@ -63,7 +63,7 @@
};
#define G (*(struct globals*)&bb_common_bufsiz1)
#define INIT_G() do { \
- G.loginpath = "/bin/login"; \
+ G.loginpath = "/bin/sh"; \
G.issuefile = "/etc/issue.net"; \
} while (0)

View File

@ -0,0 +1,12 @@
diff -urpN busybox-1.15.0/archival/libunarchive/data_extract_all.c busybox-1.15.0-unpack/archival/libunarchive/data_extract_all.c
--- busybox-1.15.0/archival/libunarchive/data_extract_all.c 2009-08-21 00:26:13.000000000 +0200
+++ busybox-1.15.0-unpack/archival/libunarchive/data_extract_all.c 2009-08-30 01:05:39.000000000 +0200
@@ -132,7 +132,7 @@ void FAST_FUNC data_extract_all(archive_
#endif
lchown(file_header->name, file_header->uid, file_header->gid);
}
- if (S_ISLNK(file_header->mode)) {
+ if (!S_ISLNK(file_header->mode)) {
/* uclibc has no lchmod, glibc is even stranger -
* it has lchmod which seems to do nothing!
* so we use chmod... */