mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
lib/libcrypt: another trivial style change
Normalize on hard tabs. I didn't catch this before pushing the previous commit. No functional changes intended. MFC after: 2 weeks MFC with: 8ef8da882ff475e3da3bde57d97593a68f7d97b2 (cherry picked from commit 61b15e6dfc963a0c67dbaeae7f4590674976111f)
This commit is contained in:
parent
c6961c90fd
commit
c931eed5bc
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ crypt_nthash(const char *pw, const char *salt __unused, char *buffer)
|
|||
unipw[unipwLen++] = htons(*s << 8);
|
||||
|
||||
/* Compute MD4 of Unicode password */
|
||||
MD4Init(&ctx);
|
||||
MD4Init(&ctx);
|
||||
MD4Update(&ctx, (u_char *)unipw, unipwLen*sizeof(u_int16_t));
|
||||
MD4Final(hash, &ctx);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue