summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorian.mcgreer%sun.com <devnull@localhost>2003-01-31 20:25:16 +0000
committerian.mcgreer%sun.com <devnull@localhost>2003-01-31 20:25:16 +0000
commitbb305c589df5be308ad2563bb6989cbe83abe5f6 (patch)
treedf45577720746a595ce91e0937248d4aeceb1d50
parent31b94f4b1f4fd6f8776110b366ec54ffb57f9f2f (diff)
downloadnss-hg-bb305c589df5be308ad2563bb6989cbe83abe5f6.tar.gz
windows fixes
-rw-r--r--security/nss/cmd/manifest.mn1
-rw-r--r--security/nss/lib/ssl/authcert.c2
-rw-r--r--security/nss/lib/ssl/ssl.h2
3 files changed, 3 insertions, 2 deletions
diff --git a/security/nss/cmd/manifest.mn b/security/nss/cmd/manifest.mn
index aa64c4b1a..fde56ee9c 100644
--- a/security/nss/cmd/manifest.mn
+++ b/security/nss/cmd/manifest.mn
@@ -44,6 +44,7 @@ DIRS = \
nssutil \
pkiutil \
selfserv \
+ tstclnt \
$(NULL)
TEMPORARILY_DONT_BUILD = \
diff --git a/security/nss/lib/ssl/authcert.c b/security/nss/lib/ssl/authcert.c
index 9f43f2517..66cc8d9ae 100644
--- a/security/nss/lib/ssl/authcert.c
+++ b/security/nss/lib/ssl/authcert.c
@@ -45,7 +45,7 @@
* This callback used by SSL to pull client certificate upon
* server request
*/
-NSS_IMPLEMENT PRStatus
+PRStatus
SSL_GetClientAuthData(void * arg,
PRFileDesc * socket,
NSSTrustDomain * td,
diff --git a/security/nss/lib/ssl/ssl.h b/security/nss/lib/ssl/ssl.h
index 3c3847f0b..7c20a696c 100644
--- a/security/nss/lib/ssl/ssl.h
+++ b/security/nss/lib/ssl/ssl.h
@@ -218,7 +218,7 @@ SSL_IMPORT SECStatus SSL_AuthCertificate(void *arg, PRFileDesc *fd,
* pRetCert - pointer to pointer to cert, for return of cert
* pRetKey - pointer to key pointer, for return of key
*/
-typedef SECStatus (PR_CALLBACK *SSLGetClientAuthData)(void *arg,
+typedef PRStatus (PR_CALLBACK *SSLGetClientAuthData)(void *arg,
PRFileDesc *fd,
NSSTrustDomain *td,
NSSDER **caNames,