summaryrefslogtreecommitdiff
path: root/ssh-keysign.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-10-26 10:05:46 +1100
committerDamien Miller <djm@mindrot.org>2013-10-26 10:05:46 +1100
commit26506ad29350c5681815745cc90b3952a84cf118 (patch)
tree797fb5763b2569bb1e15f86a5d3afe707ed88680 /ssh-keysign.c
parentbd43e8872325e9bbb3319c89da593614709f317c (diff)
- (djm) [ssh-keygen.c ssh-keysign.c sshconnect1.c sshd.c] Remove
unnecessary arc4random_stir() calls. The only ones left are to ensure that the PRNG gets a different state after fork() for platforms that have broken the API.
Diffstat (limited to 'ssh-keysign.c')
-rw-r--r--ssh-keysign.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ssh-keysign.c b/ssh-keysign.c
index b67ed1ead..518373bf8 100644
--- a/ssh-keysign.c
+++ b/ssh-keysign.c
@@ -179,7 +179,6 @@ main(int argc, char **argv)
179 permanently_set_uid(pw); 179 permanently_set_uid(pw);
180 180
181 seed_rng(); 181 seed_rng();
182 arc4random_stir();
183 182
184#ifdef DEBUG_SSH_KEYSIGN 183#ifdef DEBUG_SSH_KEYSIGN
185 log_init("ssh-keysign", SYSLOG_LEVEL_DEBUG3, SYSLOG_FACILITY_AUTH, 0); 184 log_init("ssh-keysign", SYSLOG_LEVEL_DEBUG3, SYSLOG_FACILITY_AUTH, 0);