* util_validate.c (g_validate, g_save, g_delete): If HAVE_BSD_TYPE
authorEzra Peisach <epeisach@mit.edu>
Thu, 21 Jun 2001 22:17:51 +0000 (22:17 +0000)
committerEzra Peisach <epeisach@mit.edu>
Thu, 21 Jun 2001 22:17:51 +0000 (22:17 +0000)
is not defined, declare static functions as taking a void *type for
passing to g_set_entry_add.

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

src/lib/gssapi/generic/ChangeLog
src/lib/gssapi/generic/util_validate.c

index 731eab20b49b6ea2248d6cbdc24ee42f0531a099..2667577041714431a3fcb1376ea2d9a40261860d 100644 (file)
@@ -1,3 +1,9 @@
+2001-06-21  Ezra Peisach  <epeisach@mit.edu>
+
+       * util_validate.c (g_validate, g_save, g_delete): If HAVE_BSD_TYPE
+       is not defined, declare static functions as taking a void *type for
+       passing to g_set_entry_add.
+
 2001-05-08  Ezra Peisach  <epeisach@mit.edu>
 
        * disp_major_status.c (display_unknown): Remove unused variable. 
index 3cb34fb975208a7b1ec7a56ad392112799c1b8bc..5c12cf66927ecad8bd4d3f6fb9865d741ec79188 100644 (file)
@@ -56,7 +56,11 @@ typedef struct _vkey {
 
 static int g_save(db, type, ptr)
      void **db;
+#ifdef HAVE_BSD_DB
      int type;
+#else
+     void *type;
+#endif
      void *ptr;
 {
 #ifdef HAVE_BSD_DB
@@ -76,18 +80,23 @@ static int g_save(db, type, ptr)
    return((*((*vdb)->put))(*vdb, &key, &dbtone, 0) == 0);
 #else
    g_set *gs = (g_set *) db;
+   void *a = (void *) type;
 
    if (!*gs)
       if (g_set_init(gs))
         return(0);
 
-   return(g_set_entry_add(gs, ptr, (void *) type) == 0);
+   return(g_set_entry_add(gs, ptr, type) == 0);
 #endif
 }
 
 static int g_validate(db, type, ptr)
      void **db;
+#ifdef HAVE_BSD_DB
      int type;
+#else
+     void *type;
+#endif
      void *ptr;
 {
 #ifdef HAVE_BSD_DB
@@ -119,13 +128,17 @@ static int g_validate(db, type, ptr)
    if (g_set_entry_get(gs, ptr, (void **) &value))
       return(0);
 
-   return(((int) value) == type);
+   return(value == type);
 #endif
 }
 
 static int g_delete(db, type, ptr)
      void **db;
+#ifdef HAVE_BSD_DB
      int type;
+#else
+     void *type;
+#endif
      void *ptr;
 {
 #ifdef HAVE_BSD_DB