summaryrefslogtreecommitdiffstats
path: root/crypto/dh
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2014-09-23 13:23:09 -0400
committerRich Salz <rsalz@openssl.org>2014-12-10 17:31:04 -0500
commit5cf37957fbdb7e2a1be48e15c4114d218c135f73 (patch)
tree1208728955b062762d2c327fd08d268c0942177e /crypto/dh
parenta4a934119dd213e16c9d8b11150a4815604c13bb (diff)
RT3543: Remove #ifdef LINT
I also replaced some exit/return wrappers in various programs (from main) to standardize on return. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/dh')
-rw-r--r--crypto/dh/dhtest.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/crypto/dh/dhtest.c b/crypto/dh/dhtest.c
index 1d49d0462b..c98c8047a6 100644
--- a/crypto/dh/dhtest.c
+++ b/crypto/dh/dhtest.c
@@ -226,9 +226,6 @@ static int MS_CALLBACK cb(int p, int n, BN_GENCB *arg)
if (p == 3) c='\n';
BIO_write(BN_GENCB_get_arg(arg),&c,1);
(void)BIO_flush(BN_GENCB_get_arg(arg));
-#ifdef LINT
- p=n;
-#endif
return 1;
}