From: Theodore Tso Date: Thu, 6 Jun 1996 04:08:49 +0000 (+0000) Subject: A static function must not use the INTERFACE keyword X-Git-Tag: krb5-1.0-beta6~19 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=66dde95720e09fabcbc17f2eb4c61c68b3cd85e5;p=krb5.git A static function must not use the INTERFACE keyword git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8241 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/krb/ChangeLog b/src/lib/krb5/krb/ChangeLog index 1696cb5dc..55a12e3cb 100644 --- a/src/lib/krb5/krb/ChangeLog +++ b/src/lib/krb5/krb/ChangeLog @@ -1,3 +1,8 @@ +Thu Jun 6 00:06:18 1996 Theodore Y. Ts'o + + * get_creds.c (krb5_get_credentials_core): A static function must + not use the INTERFACE keyword. + Tue May 14 18:39:22 1996 Richard Basch * mk_req_ext.c mk_safe.c send_tgs.c: diff --git a/src/lib/krb5/krb/get_creds.c b/src/lib/krb5/krb/get_creds.c index 3bc633c41..19cff0365 100644 --- a/src/lib/krb5/krb/get_creds.c +++ b/src/lib/krb5/krb/get_creds.c @@ -42,7 +42,7 @@ #include "k5-int.h" -static krb5_error_code INTERFACE +static krb5_error_code krb5_get_credentials_core(context, options, ccache, in_creds, out_creds, mcreds, fields) krb5_context context;