From: Richard Levitte <levitte@openssl.org>
Date: Wed, 11 Jul 2001 21:11:40 +0000 (+0000)
Subject: Include kssl_lcl.h where needed.
X-Git-Tag: OpenSSL_0_9_6c~182^2~17
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a96235bf7ec5ff3359f74f013fd173cd456f5e9;p=openssl

Include kssl_lcl.h where needed.
---

diff --git a/ssl/s3_clnt.c b/ssl/s3_clnt.c
index 93a87c4f12..3451ba7939 100644
--- a/ssl/s3_clnt.c
+++ b/ssl/s3_clnt.c
@@ -64,7 +64,7 @@
 #include "ssl_locl.h"
 
 #ifndef OPENSSL_NO_KRB5
-#include "kssl.h"
+#include "kssl_lcl.h"
 #endif
 
 static SSL_METHOD *ssl3_get_client_method(int ver);
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index 6813595cbc..52e2e35a86 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -112,6 +112,7 @@
 #include <stdio.h>
 #include <openssl/objects.h>
 #include "ssl_locl.h"
+#include "kssl_lcl.h"
 
 const char *ssl3_version_str="SSLv3" OPENSSL_VERSION_PTEXT;
 
diff --git a/ssl/s3_srvr.c b/ssl/s3_srvr.c
index 9fcf8c0fdf..bcf8c875cc 100644
--- a/ssl/s3_srvr.c
+++ b/ssl/s3_srvr.c
@@ -70,7 +70,7 @@
 #include "ssl_locl.h"
 
 #ifndef OPENSSL_NO_KRB5
-#include "kssl.h"
+#include "kssl_lcl.h"
 #endif /* OPENSSL_NO_KRB5 */
 
 static SSL_METHOD *ssl3_get_server_method(int ver);
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index 42278220ad..ad1af7cda3 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -67,6 +67,7 @@
 #include <openssl/lhash.h>
 #include <openssl/x509v3.h>
 #include "ssl_locl.h"
+#include "kssl_lcl.h"
 
 const char *SSL_version_str=OPENSSL_VERSION_TEXT;