diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2012-01-15 16:02:29 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2012-01-21 01:05:59 +0100 |
commit | 37c8eaecbdaebc62aa4c2e8671fb366d20f9bbe8 (patch) | |
tree | 97b62330682aa8a6912d8413088addbf52579c67 /tests/x509self.c | |
parent | 99ad4c6b2ab76d386be76daed0c509e62d6334c7 (diff) | |
download | gnutls-37c8eaecbdaebc62aa4c2e8671fb366d20f9bbe8.tar.gz |
Fixed signed/unsigned warnings.
Dropped opaque type (replaced with uint8_t)
Diffstat (limited to 'tests/x509self.c')
-rw-r--r-- | tests/x509self.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/x509self.c b/tests/x509self.c index a2f63876d6..551411584d 100644 --- a/tests/x509self.c +++ b/tests/x509self.c @@ -30,11 +30,11 @@ #include <stdlib.h> #include <string.h> #include <sys/types.h> +# include <sys/socket.h> #if !defined(_WIN32) -#include <netinet/in.h> -#include <sys/socket.h> -#include <sys/wait.h> -#include <arpa/inet.h> +# include <netinet/in.h> +# include <sys/wait.h> +# include <arpa/inet.h> #endif #include <unistd.h> #include <gnutls/gnutls.h> @@ -283,7 +283,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 @@ -297,7 +297,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]; |