git: ef83e7176d1f - stable/12 - random(3): Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 14 Apr 2022 06:45:16 UTC
The branch stable/12 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=ef83e7176d1fd558b31910411070e454629c3928
commit ef83e7176d1fd558b31910411070e454629c3928
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-04-09 06:52:28 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-04-14 06:37:50 +0000
random(3): Fix a typo in a source code comment
- s/psuedo/pseudo/
(cherry picked from commit 474df59def1a8ab90354381b0103cbc9556fce12)
---
sys/dev/random/hash.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/random/hash.c b/sys/dev/random/hash.c
index 5903394eee3c..6fead915254b 100644
--- a/sys/dev/random/hash.c
+++ b/sys/dev/random/hash.c
@@ -125,7 +125,7 @@ randomdev_encrypt_init(union randomdev_key *context, const void *data)
}
/*
- * Create a psuedorandom output stream of 'bytecount' bytes using a CTR-mode
+ * Create a pseudorandom output stream of 'bytecount' bytes using a CTR-mode
* cipher or similar. The 128-bit counter is supplied in the in-out parmeter
* 'ctr.' The output stream goes to 'd_out.'
*