Fixed warning in ssl module

This commit is contained in:
Christian Heimes 2007-12-14 04:38:13 +00:00
parent 2518b25578
commit a63f268351
1 changed files with 1 additions and 1 deletions

View File

@ -660,7 +660,7 @@ _get_peer_alt_names (X509 *certificate) {
char buf[2048];
char *vptr;
int len;
unsigned char *p;
const unsigned char *p;
if (certificate == NULL)
return peer_alt_names;