summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2022-07-31 13:41:45 +0000
committertb <>2022-07-31 13:41:45 +0000
commit7ab0b52c041a2497ba323af14b0edd331d40f1c1 (patch)
tree443c711fb26162f2ef58a81f0588e993ff2a2a41
parentb26b0c542d8a2430c8380648c04e453170dfa3d9 (diff)
downloadopenbsd-7ab0b52c041a2497ba323af14b0edd331d40f1c1.tar.gz
openbsd-7ab0b52c041a2497ba323af14b0edd331d40f1c1.tar.bz2
openbsd-7ab0b52c041a2497ba323af14b0edd331d40f1c1.zip
fix indent
-rw-r--r--src/lib/libc/crypt/arc4random.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/crypt/arc4random.c b/src/lib/libc/crypt/arc4random.c
index 61bf0edaaa..2da8e010ad 100644
--- a/src/lib/libc/crypt/arc4random.c
+++ b/src/lib/libc/crypt/arc4random.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: arc4random.c,v 1.57 2022/07/31 05:10:36 djm Exp $ */ 1/* $OpenBSD: arc4random.c,v 1.58 2022/07/31 13:41:45 tb Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1996, David Mazieres <dm@uun.org> 4 * Copyright (c) 1996, David Mazieres <dm@uun.org>
@@ -105,7 +105,7 @@ _rs_stir(void)
105 105
106 /* rekey interval should not be predictable */ 106 /* rekey interval should not be predictable */
107 chacha_encrypt_bytes(&rsx->rs_chacha, (uint8_t *)&rekey_fuzz, 107 chacha_encrypt_bytes(&rsx->rs_chacha, (uint8_t *)&rekey_fuzz,
108 (uint8_t *)&rekey_fuzz, sizeof(rekey_fuzz)); 108 (uint8_t *)&rekey_fuzz, sizeof(rekey_fuzz));
109 rs->rs_count = REKEY_BASE + (rekey_fuzz % REKEY_BASE); 109 rs->rs_count = REKEY_BASE + (rekey_fuzz % REKEY_BASE);
110} 110}
111 111