diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-05-25 01:31:20 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2006-05-25 01:31:20 +0200 |
commit | 80c1e4d9e8c82a83499d6b66cdf3a95d15bf0fa1 (patch) | |
tree | 29446275e78144242e99212d00fa934016b3a616 /protocols/ssl_sspi.c | |
parent | 601e81362bbf4e4d1e686334b35d3bdcd87314d2 (diff) |
#ifdef out some Win32-incompatible code blocks
Diffstat (limited to 'protocols/ssl_sspi.c')
-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; |