"extern" is a C++ reserved word.
Pointed out by: Janez Jere <jj@void.si>
diff --git a/apps/s_server.c b/apps/s_server.c
index bcb9779..aeca2ea 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -93,7 +93,7 @@
#endif
#ifndef NO_RSA
-static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int export,int keylength);
+static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength);
#endif
static int sv_body(char *hostname, int s, unsigned char *context);
static int www_body(char *hostname, int s, unsigned char *context);
@@ -1394,7 +1394,7 @@
}
#ifndef NO_RSA
-static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int export, int keylength)
+static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength)
{
static RSA *rsa_tmp=NULL;