diff options
Diffstat (limited to 'tests/resume.c')
-rw-r--r-- | tests/resume.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/resume.c b/tests/resume.c index 9add84d6b1..6214f7fbd2 100644 --- a/tests/resume.c +++ b/tests/resume.c @@ -31,8 +31,8 @@ #include <stdlib.h> #include <string.h> #include <sys/types.h> -#if !defined(_WIN32) #include <sys/socket.h> +#if !defined(_WIN32) #include <sys/wait.h> #include <netinet/in.h> #include <arpa/inet.h> @@ -271,7 +271,7 @@ static gnutls_dh_params_t dh_params; static int generate_dh_params (void) { - const gnutls_datum_t p3 = { (char *) pkcs3, strlen (pkcs3) }; + const gnutls_datum_t p3 = { (void *) pkcs3, strlen (pkcs3) }; /* Generate Diffie-Hellman parameters - for use with DHE * kx algorithms. These should be discarded and regenerated * once a day, once a week or once a month. Depending on the @@ -285,7 +285,7 @@ int err, listen_sd, i; int sd, ret; struct sockaddr_in sa_serv; struct sockaddr_in sa_cli; -int client_len; +socklen_t client_len; char topbuf[512]; gnutls_session_t session; char buffer[MAX_BUF + 1]; |