ssl_verify: include <string.h>

ssl_verify.c is using memcmp which comes from string.h, this was
breaking compilation with -Werror -Wall on Mac OS X
This commit is contained in:
Christophe Fergeau 2011-04-30 18:20:23 +02:00 committed by Marc-André Lureau
parent 4a076d7fbd
commit e22a9e9ebe

View File

@ -29,6 +29,7 @@
#include <arpa/inet.h>
#endif
#include <ctype.h>
#include <string.h>
#ifndef SPICE_DEBUG
# define SPICE_DEBUG(format, ...)