Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Sep 2024 03:57:57 GMT
From:      Enji Cooper <ngie@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: c6961c90fd2a - stable/14 - lib/libcrypt: remove trailing whitespace
Message-ID:  <202409280357.48S3vvVW015501@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by ngie:

URL: https://cgit.FreeBSD.org/src/commit/?id=c6961c90fd2a320a0e4da1771dc47a1fe8f56b0b

commit c6961c90fd2a320a0e4da1771dc47a1fe8f56b0b
Author:     Enji Cooper <ngie@FreeBSD.org>
AuthorDate: 2023-10-28 01:10:39 +0000
Commit:     Enji Cooper <ngie@FreeBSD.org>
CommitDate: 2024-09-28 03:57:45 +0000

    lib/libcrypt: remove trailing whitespace
    
    No functional change intended.
    
    MFC after:      2 weeks
    
    (cherry picked from commit 8ef8da882ff475e3da3bde57d97593a68f7d97b2)
---
 lib/libcrypt/crypt-nthash.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/libcrypt/crypt-nthash.c b/lib/libcrypt/crypt-nthash.c
index 28c832dd6f9f..8bd880e625cc 100644
--- a/lib/libcrypt/crypt-nthash.c
+++ b/lib/libcrypt/crypt-nthash.c
@@ -57,17 +57,17 @@ crypt_nthash(const char *pw, const char *salt __unused, char *buffer)
 	u_char hash[MD4_SIZE];
 	const char *s;
 	MD4_CTX	ctx;
-  
-	bzero(unipw, sizeof(unipw)); 
+
+	bzero(unipw, sizeof(unipw));
 	/* convert to unicode (thanx Archie) */
 	unipwLen = 0;
 	for (s = pw; unipwLen < sizeof(unipw) / 2 && *s; s++)
 		unipw[unipwLen++] = htons(*s << 8);
-        
+
 	/* Compute MD4 of Unicode password */
  	MD4Init(&ctx);
 	MD4Update(&ctx, (u_char *)unipw, unipwLen*sizeof(u_int16_t));
-	MD4Final(hash, &ctx);  
+	MD4Final(hash, &ctx);
 
 	buffer = stpcpy(buffer, magic);
 	*buffer++ = '$';



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202409280357.48S3vvVW015501>