given principal. It is like in_tkt() but it is public and also
takes a realm for credentials caches that require a full
principal name (e.g., CCAPI).
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12574
dc483132-0cff-0310-8789-
dd5450dbe970
+2000-07-20 Danilo Almeida <dalmeida@mit.edu>
+
+ * memcache.c: Add krb_in_tkt() function to initialize ticket for a
+ given principal. It is like in_tkt() but it is public and also
+ takes a realm for credentials caches that require a full
+ principal name (e.g., CCAPI).
+
2000-07-19 Danilo Almeida <dalmeida@mit.edu>
* in_tkt.c: Add krb_in_tkt() function to initialize ticket for a
}
+KRB5_DLLIMP int KRB5_CALLCONV
+krb_in_tkt(pname, pinst, prealm)
+ char *pname;
+ char *pinst;
+ char *prealm;
+{
+ return in_tkt(pname, pinst);
+}
+
/*
* dest_tkt() is used to destroy the ticket store upon logout.
* If the ticket file does not exist, dest_tkt() returns RET_TKFIL.