+Thu Jul 20 22:34:47 1995 Mark Eichin <eichin@cygnus.com>
+
+ * rc_dfl.c (rc_store): rename from store() to avoid conflict with
+ dbm function of same name (and different prototype.)
+
Wed July 5 15:52:31 1995 James Mattly <mattly@fusion.com>
* rc_io.c added HAVE_MACSOCK_H, change open to THREEPARAMOPEN
data stored in this cache type, namely "dfl"
struct authlist
multilinked list of reps
-static int store(context, krb5_rcache id,krb5_donot_replay *rep)
+static int rc_store(context, krb5_rcache id,krb5_donot_replay *rep)
store rep in cache id; return CMP_REPLAY if replay, else CMP_MALLOC/CMP_HOHUM
*/
/* of course, list is backwards from file */
/* hash could be forwards since we have to search on match, but naaaah */
-static int store(context, id, rep)
+static int rc_store(context, id, rep)
krb5_context context;
krb5_rcache id;
krb5_donot_replay *rep;
if (alive(context, rep,t->lifespan) != CMP_EXPIRED) {
- if (store(context, id, rep) == CMP_MALLOC) {
+ if (rc_store(context, id, rep) == CMP_MALLOC) {
retval = KRB5_RC_MALLOC; goto io_fail;
}
}
unsigned long ret;
struct dfl_data *t = (struct dfl_data *)id->data;
- switch(store(context, id,rep)) {
+ switch(rc_store(context, id,rep)) {
case CMP_MALLOC:
return KRB5_RC_MALLOC;
case CMP_REPLAY: