mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-04 23:25:01 +02:00
package/busybox: passwd: use MD5 hash by default (like it used to be)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28885 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
8f348ad02b
commit
b0ee088651
@ -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
|
||||
|
@ -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;
|
Loading…
Reference in New Issue
Block a user