summaryrefslogtreecommitdiff
path: root/src/ne_sspi.h
diff options
context:
space:
mode:
authorjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2005-01-27 20:03:53 +0000
committerjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2005-01-27 20:03:53 +0000
commit8d43bdb4bf07c087feb2829acf959842cfbacce1 (patch)
tree13adbcd7994a57efde42b5d7415c37437c71f4dd /src/ne_sspi.h
parent69cb1d083a05ca5f2b581132123293d26d450eb8 (diff)
downloadneon-8d43bdb4bf07c087feb2829acf959842cfbacce1.tar.gz
Fix SSPI code so that it compiles for Win32 (Vladimir):
* src/ne_sspi.h (ne_sspi_deinit): fixed return type. * src/ne_sspi.c: Added preprocessor check HAVE_SSPI to allow compilation without SSPI. (getMaxTokenSize): removed const qualifier for package parameter because it has to be passed to a function that takes a not const reference. (ne_sspi_init, ne_sspi_deinit): Match the function names to the correct functions. git-svn-id: http://svn.webdav.org/repos/projects/neon/trunk@457 61a7d7f5-40b7-0310-9c16-bb0ea8cb1845
Diffstat (limited to 'src/ne_sspi.h')
-rw-r--r--src/ne_sspi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ne_sspi.h b/src/ne_sspi.h
index 4c707a9..af4e598 100644
--- a/src/ne_sspi.h
+++ b/src/ne_sspi.h
@@ -32,7 +32,7 @@
#include <security.h>
int ne_sspi_init(void);
-fint ne_sspi_deinit(void);
+int ne_sspi_deinit(void);
int ne_sspi_create_context(void **context, char * serverName, int ntlm);