From: Peter Breitenlohner Date: Tue, 1 Jul 2003 20:36:41 +0000 (+0000) Subject: STABLE12-fix-static-decl-conflict-for-localcell-20030701 X-Git-Tag: openafs-stable-1_2_10~26 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=9766a45cf1de44daf3764a9c4ee1d01c79398d57;p=packages%2Fo%2Fopenafs.git STABLE12-fix-static-decl-conflict-for-localcell-20030701 FIXES 1646 declared static, make header match --- 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 */