aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/k5-int.h2
-rw-r--r--src/lib/krb5/ccache/Makefile.in4
-rw-r--r--src/lib/krb5/ccache/cc-int.h2
-rw-r--r--src/lib/krb5/ccache/cc_keyring.c2
-rw-r--r--src/lib/krb5/ccache/cc_memory.c2
5 files changed, 6 insertions, 6 deletions
diff --git a/src/include/k5-int.h b/src/include/k5-int.h
index b9abd8a..76c2ba0 100644
--- a/src/include/k5-int.h
+++ b/src/include/k5-int.h
@@ -1762,8 +1762,6 @@ krb5_error_code
krb5int_generate_and_save_subkey (krb5_context, krb5_auth_context,
krb5_keyblock * /* Old keyblock, not new! */);
-krb5_error_code krb5int_random_string (krb5_context, char *, unsigned int);
-
/* set and change password helpers */
krb5_error_code krb5int_mk_chpw_req
diff --git a/src/lib/krb5/ccache/Makefile.in b/src/lib/krb5/ccache/Makefile.in
index 360b6cf..208ae65 100644
--- a/src/lib/krb5/ccache/Makefile.in
+++ b/src/lib/krb5/ccache/Makefile.in
@@ -189,7 +189,7 @@ cc_memory.so cc_memory.po $(OUTPRE)cc_memory.$(OBJEXT): \
$(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
$(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
$(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
- $(SRCTOP)/include/socket-utils.h cc_memory.c
+ $(SRCTOP)/include/socket-utils.h cc-int.h cc_memory.c
cc_keyring.so cc_keyring.po $(OUTPRE)cc_keyring.$(OBJEXT): \
$(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \
$(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \
@@ -198,7 +198,7 @@ cc_keyring.so cc_keyring.po $(OUTPRE)cc_keyring.$(OBJEXT): \
$(SRCTOP)/include/k5-plugin.h $(SRCTOP)/include/k5-thread.h \
$(SRCTOP)/include/krb5.h $(SRCTOP)/include/krb5/locate_plugin.h \
$(SRCTOP)/include/krb5/preauth_plugin.h $(SRCTOP)/include/port-sockets.h \
- $(SRCTOP)/include/socket-utils.h cc_keyring.c
+ $(SRCTOP)/include/socket-utils.h cc-int.h cc_keyring.c
ccfns.so ccfns.po $(OUTPRE)ccfns.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
$(BUILDTOP)/include/krb5/krb5.h $(BUILDTOP)/include/osconf.h \
$(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-err.h \
diff --git a/src/lib/krb5/ccache/cc-int.h b/src/lib/krb5/ccache/cc-int.h
index 430e4c3..2978ed9 100644
--- a/src/lib/krb5/ccache/cc-int.h
+++ b/src/lib/krb5/ccache/cc-int.h
@@ -42,6 +42,8 @@ krb5int_cc_initialize(void);
void
krb5int_cc_finalize(void);
+krb5_error_code krb5int_random_string (krb5_context, char *, unsigned int);
+
extern k5_mutex_t krb5int_mcc_mutex;
extern k5_mutex_t krb5int_krcc_mutex;
extern k5_mutex_t krb5int_cc_file_mutex;
diff --git a/src/lib/krb5/ccache/cc_keyring.c b/src/lib/krb5/ccache/cc_keyring.c
index d892584..be22a83 100644
--- a/src/lib/krb5/ccache/cc_keyring.c
+++ b/src/lib/krb5/ccache/cc_keyring.c
@@ -70,7 +70,7 @@
* special key, which is not counted in the 'numkeys' count
*/
-#include "k5-int.h"
+#include "cc-int.h"
#ifdef USE_KEYRING_CCACHE
diff --git a/src/lib/krb5/ccache/cc_memory.c b/src/lib/krb5/ccache/cc_memory.c
index 0014407..dc0fd34 100644
--- a/src/lib/krb5/ccache/cc_memory.c
+++ b/src/lib/krb5/ccache/cc_memory.c
@@ -26,7 +26,7 @@
*
* implementation of memory-based credentials cache
*/
-#include "k5-int.h"
+#include "cc-int.h"
#include <errno.h>
static krb5_error_code KRB5_CALLCONV krb5_mcc_close