From cd0d52cbccd8c66fd7b28a35eb69efdc4231201f Mon Sep 17 00:00:00 2001 From: nico Date: Wed, 24 May 2006 07:06:23 +0000 Subject: sync busybox with trunk (update to v1.1.3). git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3823 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/busybox/patches/230-passwd_salt.patch | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 package/busybox/patches/230-passwd_salt.patch (limited to 'package/busybox/patches/230-passwd_salt.patch') diff --git a/package/busybox/patches/230-passwd_salt.patch b/package/busybox/patches/230-passwd_salt.patch deleted file mode 100644 index 0322a9843..000000000 --- a/package/busybox/patches/230-passwd_salt.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- 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); -- cgit v1.2.3