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:	8ef8da882f
This commit is contained in:
Enji Cooper 2023-10-27 18:56:41 -07:00
parent 1c1f229e91
commit 61b15e6dfc

View file

@ -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);