git: 61b15e6dfc96 - main - lib/libcrypt: another trivial style change
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 28 Oct 2023 01:59:28 UTC
The branch main has been updated by ngie: URL: https://cgit.FreeBSD.org/src/commit/?id=61b15e6dfc963a0c67dbaeae7f4590674976111f commit 61b15e6dfc963a0c67dbaeae7f4590674976111f Author: Enji Cooper <ngie@FreeBSD.org> AuthorDate: 2023-10-28 01:56:41 +0000 Commit: Enji Cooper <ngie@FreeBSD.org> CommitDate: 2023-10-28 01:59:23 +0000 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 --- lib/libcrypt/crypt-nthash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libcrypt/crypt-nthash.c b/lib/libcrypt/crypt-nthash.c index 8bd880e625cc..cc9dbf7533cd 100644 --- a/lib/libcrypt/crypt-nthash.c +++ b/lib/libcrypt/crypt-nthash.c @@ -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);