* server_init.c: Change a few calls to align with the new kdb
authorTom Yu <tlyu@mit.edu>
Fri, 25 Jul 1997 19:39:54 +0000 (19:39 +0000)
committerTom Yu <tlyu@mit.edu>
Fri, 25 Jul 1997 19:39:54 +0000 (19:39 +0000)
API.

* Makefile.in: Bump version.

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

src/lib/kadm5/srv/ChangeLog
src/lib/kadm5/srv/Makefile.in
src/lib/kadm5/srv/server_init.c

index 238fc8fcb6ee6f95e53301c1c61d30b3f3af4d8b..8ad1c58c3c014b37227ebaa5b82a6e2d7753192a 100644 (file)
@@ -1,3 +1,10 @@
+Fri Jul 25 15:37:08 1997  Tom Yu  <tlyu@mit.edu>
+
+       * server_init.c: Change a few calls to align with the new kdb
+       API.
+
+       * Makefile.in: Bump version.
+
 Tue Jul  1 02:32:49 1997  Tom Yu  <tlyu@mit.edu>
 
        * server_acl.h: Fix ACL_ALL_MASK to include ACL_SETKEY.
index 9a76e131e6988c6aa08a12879194a5ef07824248..df88e9ee75b3fd7f9821ab96c6dc6fd1df2ed31d 100644 (file)
@@ -5,7 +5,7 @@ CFLAGS = $(CCOPTS) $(DEFS) -I$(BUILDTOP)/include/kadm5
 
 LIB=kadm5srv
 LIBMAJOR=1
-LIBMINOR=0
+LIBMINOR=1
 STOBJLISTS=../OBJS.ST OBJS.ST
 SHLIB_EXPDEPS=\
        $(TOPLIBD)/libgssrpc$(SHLIBEXT) \
index a0356c4e44beeaaabc0455c2c2e10ae642ba2f5f..3f35d3521975f1b559f56bb4fb8431ebbb22ef42 100644 (file)
@@ -184,7 +184,7 @@ kadm5_ret_t kadm5_init(char *client_name, char *pass,
      * Set the db_name based on configuration before calling
      * krb5_db_init, so it will get used.
      */
-    if (ret = krb5_dbm_db_set_name(handle->context,
+    if (ret = krb5_db_set_name(handle->context,
                                   handle->params.dbname)) {
         free(handle);
         return(ret);
@@ -311,7 +311,7 @@ kadm5_ret_t kadm5_flush(void *server_handle)
          * Set the db_name based on configuration before calling
          * krb5_db_init, so it will get used.
          */
-        (ret = krb5_dbm_db_set_name(handle->context,
+        (ret = krb5_db_set_name(handle->context,
                                     handle->params.dbname)) ||
         (ret = krb5_db_init(handle->context)) ||
         (ret = adb_policy_close(handle)) ||