From 9766a45cf1de44daf3764a9c4ee1d01c79398d57 Mon Sep 17 00:00:00 2001 From: Peter Breitenlohner Date: Tue, 1 Jul 2003 20:36:41 +0000 Subject: [PATCH] STABLE12-fix-static-decl-conflict-for-localcell-20030701 FIXES 1646 declared static, make header match --- src/auth/ktc.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/auth/ktc.c b/src/auth/ktc.c index 7a3d6f547..0165af282 100644 --- a/src/auth/ktc.c +++ b/src/auth/ktc.c @@ -131,7 +131,10 @@ static struct flock fileUlock = { F_UNLCK, 0, 0, 0, 0 }; */ int afs_tf_init(), afs_tf_get_pname(), afs_tf_get_pinst(), afs_tf_get_cred(); int afs_tf_save_cred(), afs_tf_close(), afs_tf_create(); -int afs_tf_dest_tkt(), ktc_LocalCell(); +int afs_tf_dest_tkt(); +/* except ktc_LocalCell which is still static + */ +static int ktc_LocalCell(); char *ktc_tkt_string(); #endif /* AFS_KERBEROS_ENV */ -- 2.39.5