]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (dtucker) openbsd-compat/openssl-compat.c] remove sleep leftover from
authorDarren Tucker <dtucker@zip.com.au>
Sat, 4 Dec 2010 21:46:05 +0000 (08:46 +1100)
committerDarren Tucker <dtucker@zip.com.au>
Sat, 4 Dec 2010 21:46:05 +0000 (08:46 +1100)
   debugging.  Spotted by djm.

ChangeLog
openbsd-compat/openssl-compat.c

index 7b94b59e54df511bac82080a593ab95d74517c69..458f7330fe521313020537ca30b470d8b664bf7a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20101205
+ - (dtucker) openbsd-compat/openssl-compat.c] remove sleep leftover from
+   debugging.  Spotted by djm.
+
 20101204
  - (djm) [openbsd-compat/bindresvport.c] Use arc4random_uniform(range)
    instead of (arc4random() % range)
index e2d090cf161b029e48338ce6aee9a9206ae07db7..eb5ae7f859c0ecbec018402b3db1372f4261d284 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: openssl-compat.c,v 1.11 2010/12/04 12:20:50 dtucker Exp $ */
+/* $Id: openssl-compat.c,v 1.12 2010/12/04 21:46:05 dtucker Exp $ */
 
 /*
  * Copyright (c) 2005 Darren Tucker <dtucker@zip.com.au>
@@ -81,7 +81,6 @@ RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *bn_e, void *cb)
        RSA *new_rsa, tmp_rsa;
        unsigned long e;
 
-       sleep(1);
        if (cb != NULL)
                fatal("%s: callback args not supported", __func__);
        e = BN_get_word(bn_e);