Commit c369ca1e authored by Christian Heimes's avatar Christian Heimes

Fixed warning in ssl module

parent 2ff63d23
...@@ -660,7 +660,7 @@ _get_peer_alt_names (X509 *certificate) { ...@@ -660,7 +660,7 @@ _get_peer_alt_names (X509 *certificate) {
char buf[2048]; char buf[2048];
char *vptr; char *vptr;
int len; int len;
unsigned char *p; const unsigned char *p;
if (certificate == NULL) if (certificate == NULL)
return peer_alt_names; return peer_alt_names;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment