* rc_dfl.c (rc_store): rename from store() to avoid conflict with
authorMark Eichin <eichin@mit.edu>
Fri, 21 Jul 1995 02:39:36 +0000 (02:39 +0000)
committerMark Eichin <eichin@mit.edu>
Fri, 21 Jul 1995 02:39:36 +0000 (02:39 +0000)
dbm function of same name (and different prototype.)

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6319 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/rcache/ChangeLog
src/lib/krb5/rcache/rc_dfl.c

index e9aae54e4209a8b48a8d1fb5e259edede73c32ef..bc40a0c5f13c477ee8cb0cbc571a0421d032f9f5 100644 (file)
@@ -1,3 +1,8 @@
+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
 
index 32999245b4e94ef789ae6aea9fc68dda39be1308..99eb9d30c9c8e2a7764d908d4f89ff7f4d7d368a 100644 (file)
@@ -37,7 +37,7 @@ struct dfl_data
   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
 
 */
@@ -124,7 +124,7 @@ struct authlist
 /* 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;
@@ -424,7 +424,7 @@ krb5_rcache id;
 
        
        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;
            } 
        }
@@ -489,7 +489,7 @@ krb5_donot_replay *rep;
     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: