Fixes for signed/unsigned warnings and shadows.

This commit is contained in:
Dr. Stephen Henson
2005-04-26 17:43:53 +00:00
parent 6ededa42db
commit 4e321ffaff
6 changed files with 14 additions and 14 deletions

View File

@@ -148,7 +148,7 @@ typedef fd_mask fd_set;
#define PORT_STR "4433"
#define PROTOCOL "tcp"
int do_server(int port, int type, int *ret, int (*cb) (char *hostname, int s, unsigned char *context), char *context);
int do_server(int port, int type, int *ret, int (*cb) (char *hostname, int s, unsigned char *context), unsigned char *context);
#ifdef HEADER_X509_H
int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx);
#endif