summaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-11-30 20:41:28 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-11-30 20:41:28 +0000
commit002526481eecee09222cc400ac728ee209b01336 (patch)
treebe484f9a6c26894de89ba2ad84147d651197b3cb /libbb
parentab24e18c7a32ee1637be19f239e9dd9d7c7f6534 (diff)
downloadbusybox-w32-002526481eecee09222cc400ac728ee209b01336.tar.gz
busybox-w32-002526481eecee09222cc400ac728ee209b01336.tar.bz2
busybox-w32-002526481eecee09222cc400ac728ee209b01336.zip
passwd: small size optimization. salt generation improved
(really generated different salts even if called back-to-back).
Diffstat (limited to 'libbb')
-rw-r--r--libbb/pw_encrypt.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libbb/pw_encrypt.c b/libbb/pw_encrypt.c
index f6085f3d2..d546bc883 100644
--- a/libbb/pw_encrypt.c
+++ b/libbb/pw_encrypt.c
@@ -8,7 +8,6 @@
8 */ 8 */
9 9
10#include "libbb.h" 10#include "libbb.h"
11#include <string.h>
12#include <crypt.h> 11#include <crypt.h>
13 12
14char *pw_encrypt(const char *clear, const char *salt) 13char *pw_encrypt(const char *clear, const char *salt)