diff options
Diffstat (limited to 'protocols')
| -rw-r--r-- | protocols/ssl_sspi.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/protocols/ssl_sspi.c b/protocols/ssl_sspi.c index 2129f07b..0529b4ec 100644 --- a/protocols/ssl_sspi.c +++ b/protocols/ssl_sspi.c @@ -38,7 +38,7 @@ int ssl_errno;  struct scd  {  	int fd; -	SslInputFunction func; +	ssl_input_function func;  	gpointer data;  	gboolean established;  	int inpa; @@ -59,7 +59,7 @@ void sspi_global_deinit( void )  	/* FIXME */  } -void *ssl_connect( char *host, int port, SslInputFunction func, gpointer data ) +void *ssl_connect( char *host, int port, ssl_input_function func, gpointer data )  {  	struct scd *conn = g_new0( struct scd, 1 );  	SCHANNEL_CRED ssl_cred; | 
