aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/230-passwd_salt.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-04-05 02:09:22 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-04-05 02:09:22 +0000
commite1b417ee76bd97a05854f4304cef3f73e9da633b (patch)
treef5913675e5868c535c007efb3e09a01ce6890287 /package/busybox/patches/230-passwd_salt.patch
parent42269e22a8b817e1e6bc2c9cbb2f03df31221458 (diff)
downloadmaster-187ad058-e1b417ee76bd97a05854f4304cef3f73e9da633b.tar.gz
master-187ad058-e1b417ee76bd97a05854f4304cef3f73e9da633b.tar.bz2
master-187ad058-e1b417ee76bd97a05854f4304cef3f73e9da633b.zip
large init script cleanup and merge of whiterussian changes, new dnsmasq config handling
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3588 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/patches/230-passwd_salt.patch')
-rw-r--r--package/busybox/patches/230-passwd_salt.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/package/busybox/patches/230-passwd_salt.patch b/package/busybox/patches/230-passwd_salt.patch
new file mode 100644
index 0000000000..0322a98439
--- /dev/null
+++ b/package/busybox/patches/230-passwd_salt.patch
@@ -0,0 +1,13 @@
+--- busybox-1.00/loginutils/passwd.c 2006-03-26 06:07:37 -05:00
++++ busybox-1.00/loginutils/passwd.c 2006-03-26 06:09:03 -05:00
+@@ -386,7 +386,9 @@
+ bzero(orig, sizeof(orig));
+
+ if (algo == 1) {
+- cp = pw_encrypt(pass, "$1$");
++ char salt[6]="$1$\0\0\0";
++ memcpy(salt+3,crypt_make_salt(),3);
++ cp = pw_encrypt(pass, salt);
+ } else
+ cp = pw_encrypt(pass, crypt_make_salt());
+ bzero(pass, sizeof pass);