git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@96818
13f79535-47bb-0310-9956-
ffa450edef68
return DECLINED; /* XXX */
}
- vhost_md5 = ap_md5_binary(c->pool, sc->vhost_id, sc->vhost_id_len);
+ vhost_md5 = ap_md5_binary(c->pool, (unsigned char *)sc->vhost_id,
+ sc->vhost_id_len);
if (!SSL_set_session_id_context(ssl, (unsigned char *)vhost_md5,
MD5_DIGESTSIZE*2))
REG_EXTENDED|REG_NOSUB)) == NULL) {
ssl_expr_error = "Failed to compile regular expression";
YYERROR;
- regex = NULL;
}
$$ = ssl_expr_make(op_Regex, regex, NULL);
}
REG_EXTENDED|REG_NOSUB|REG_ICASE)) == NULL) {
ssl_expr_error = "Failed to compile regular expression";
YYERROR;
- regex = NULL;
}
$$ = ssl_expr_make(op_Regex, regex, NULL);
}
X509_NAME *xsn;
X509_NAME_ENTRY *xsne;
int i, nid;
- char *data_ptr;
+ unsigned char *data_ptr;
int data_len;
xsn = X509_get_subject_name(xs);