diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-30 20:41:28 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-30 20:41:28 +0000 |
commit | 002526481eecee09222cc400ac728ee209b01336 (patch) | |
tree | be484f9a6c26894de89ba2ad84147d651197b3cb /libbb/pw_encrypt.c | |
parent | ab24e18c7a32ee1637be19f239e9dd9d7c7f6534 (diff) |
passwd: small size optimization. salt generation improved
(really generated different salts even if called back-to-back).
Diffstat (limited to 'libbb/pw_encrypt.c')
-rw-r--r-- | libbb/pw_encrypt.c | 1 |
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 @@ */ #include "libbb.h" -#include <string.h> #include <crypt.h> char *pw_encrypt(const char *clear, const char *salt) |