diff options
author | Nicolas Thill <nico@openwrt.org> | 2011-11-09 17:32:23 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2011-11-09 17:32:23 +0000 |
commit | d9aa1e3c1b3d849153caf2a32ceaaf04f10ecc71 (patch) | |
tree | 6e44715f326ba64ff68b2485eaaaba5ccaa4c491 /package/busybox | |
parent | b1a4acfb407d6d116689538faa74c84db4f22901 (diff) | |
download | upstream-d9aa1e3c1b3d849153caf2a32ceaaf04f10ecc71.tar.gz upstream-d9aa1e3c1b3d849153caf2a32ceaaf04f10ecc71.tar.bz2 upstream-d9aa1e3c1b3d849153caf2a32ceaaf04f10ecc71.zip |
package/busybox: passwd: use MD5 hash by default (like it used to be)
SVN-Revision: 28885
Diffstat (limited to 'package/busybox')
-rw-r--r-- | package/busybox/Makefile | 2 | ||||
-rw-r--r-- | package/busybox/patches/002-passwd_use_md5_hash_by_default_like_it_used_to_be.patch | 20 |
2 files changed, 21 insertions, 1 deletions
diff --git a/package/busybox/Makefile b/package/busybox/Makefile index a6b6556052..871eae4ad3 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=busybox PKG_VERSION:=1.19.3 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_FLAGS:=essential PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 diff --git a/package/busybox/patches/002-passwd_use_md5_hash_by_default_like_it_used_to_be.patch b/package/busybox/patches/002-passwd_use_md5_hash_by_default_like_it_used_to_be.patch new file mode 100644 index 0000000000..ff79f3ee9c --- /dev/null +++ b/package/busybox/patches/002-passwd_use_md5_hash_by_default_like_it_used_to_be.patch @@ -0,0 +1,20 @@ +From eb80c2a5315ed08bd329448217695375d89732c9 Mon Sep 17 00:00:00 2001 +From: Nicolas Thill <nico@openwrt.org> +Date: Wed, 9 Nov 2011 18:17:20 +0100 +Subject: [PATCH] passwd: use MD5 hash by default (like it used to be) + +--- + loginutils/passwd.c | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +--- a/loginutils/passwd.c ++++ b/loginutils/passwd.c +@@ -94,7 +94,7 @@ int passwd_main(int argc UNUSED_PARAM, c + }; + unsigned opt; + int rc; +- const char *opt_a = "d"; /* des */ ++ const char *opt_a = "m"; /* md5 */ + const char *filename; + char *myname; + char *name; |