"extern" is a C++ reserved word.

Pointed out by: Janez Jere <jj@void.si>
This commit is contained in:
Ulf Möller
1999-06-09 16:33:18 +00:00
parent 4e6ec1da04
commit df63a389a5
6 changed files with 34 additions and 31 deletions

View File

@@ -93,7 +93,7 @@ typedef unsigned int u_int;
#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 @@ err:
}
#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;