From c768305c2f2203cf1fb9262a9f22b5a5f2dafebb Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Sat, 17 Mar 2001 22:13:19 +0000 Subject: Don't include system include dir. 2001-03-17 Jeffrey Stedfast * Makefile.am: Don't include system include dir. * camel.c: Use quotes around the nss.h include so it doesn't try to use the systen nss.h file. * camel-tcp-stream-ssl.c: Same here. svn path=/trunk/; revision=8786 --- camel/camel-tcp-stream-ssl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'camel/camel-tcp-stream-ssl.c') diff --git a/camel/camel-tcp-stream-ssl.c b/camel/camel-tcp-stream-ssl.c index 8aa4080660..708c58e364 100644 --- a/camel/camel-tcp-stream-ssl.c +++ b/camel/camel-tcp-stream-ssl.c @@ -37,7 +37,7 @@ #include #include #include -#include +#include "nss.h" /* Don't use <> here or it will include the system nss.h instead */ #include static CamelTcpStreamClass *parent_class = NULL; @@ -335,7 +335,6 @@ ssl_bad_cert (void *data, PRFileDesc *sockfd) CamelService *service; char *prompt, *cert_str; gpointer accept; - PRUint32 len; g_return_val_if_fail (data != NULL, SECFailure); g_return_val_if_fail (CAMEL_IS_SERVICE (data), SECFailure); -- cgit