(in_tkt): Implement in terms of krb_in_tkt() to match existing
Unix and Windows API. This shouldn't be a problem because it
appears to be considered an internal API on Mac.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15180
dc483132-0cff-0310-8789-
dd5450dbe970
* is the right one to blow away.
*/
-int
-in_tkt (
+int KRB5_CALLCONV
+krb_in_tkt (
char* pname,
char* pinst,
char* realm)
return KSUCCESS;
}
+int KRB5_CALLCONV
+in_tkt(
+ char *name,
+ char *inst)
+{
+ char realm[REALM_SZ];
+ krb_get_lrealm(realm, 1);
+ return krb_in_tkt(name, inst, realm);
+}
+
int KRB5_CALLCONV
krb_save_credentials(
char *service,
+2003-02-11 Tom Yu <tlyu@mit.edu>
+
+ * CCache-glue.c (krb_in_tkt): Rename from in_tkt().
+ (in_tkt): Implement in terms of krb_in_tkt() to match existing
+ Unix and Windows API. This shouldn't be a problem because it
+ appears to be considered an internal API on Mac.
+
2003-02-10 Tom Yu <tlyu@mit.edu>
* password_to_key.c (krb5_passwd_to_key): Replace snprintf() call