Skip to content

Commit

Permalink
Add missing <string.h> for openssl_hostname_validation module
Browse files Browse the repository at this point in the history
Now it included by openssl, but nfter
openssl/openssl@master-post-reformat-1494-g6329b60 it will print warning
(apparently they dropped <string.h> from the generic headers).
  • Loading branch information
azat committed Nov 18, 2015
1 parent 29573f0 commit 3316a21
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sample/openssl_hostname_validation.c
Expand Up @@ -41,6 +41,7 @@ SOFTWARE.

#include <openssl/x509v3.h>
#include <openssl/ssl.h>
#include <string.h>

#include "openssl_hostname_validation.h"
#include "hostcheck.h"
Expand Down

0 comments on commit 3316a21

Please sign in to comment.