summaryrefslogtreecommitdiffstats
path: root/ssl/s2_srvr.c
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2000-01-08 21:06:24 +0000
committerBen Laurie <ben@openssl.org>2000-01-08 21:06:24 +0000
commit752d706aaf651ce87368bc826a3035a6a4f31190 (patch)
treeaee963771a74b435db3cac890768367920737602 /ssl/s2_srvr.c
parentc3ed3b6eab8b8f3a8ebe6fc6f5d14b4faf3c8cbe (diff)
Make NO_RSA compile with pedantic.
Diffstat (limited to 'ssl/s2_srvr.c')
-rw-r--r--ssl/s2_srvr.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ssl/s2_srvr.c b/ssl/s2_srvr.c
index f8f1ba76d0..e219ae5e32 100644
--- a/ssl/s2_srvr.c
+++ b/ssl/s2_srvr.c
@@ -966,4 +966,10 @@ static int ssl_rsa_private_decrypt(CERT *c, int len, unsigned char *from,
SSLerr(SSL_F_SSL_RSA_PRIVATE_DECRYPT,ERR_R_RSA_LIB);
return(i);
}
+#else /* !NO_RSA */
+
+# if PEDANTIC
+static void *dummy=&dummy;
+# endif
+
#endif