* alt_prof.c (krb5_aprof_init): use profile_init_path on fname,
authorMark Eichin <eichin@mit.edu>
Wed, 11 Sep 1996 00:52:00 +0000 (00:52 +0000)
committerMark Eichin <eichin@mit.edu>
Wed, 11 Sep 1996 00:52:00 +0000 (00:52 +0000)
not profile_init.

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

src/lib/kadm5/ChangeLog
src/lib/kadm5/alt_prof.c

index f3d2c637f25498815e8b7395666975a76995ebd0..9cf785b0b9812f1c1c2e722440bca4ab29af3d90 100644 (file)
@@ -1,3 +1,8 @@
+Tue Sep 10 01:47:39 1996  Mark Eichin  <eichin@cygnus.com>
+
+       * alt_prof.c (krb5_aprof_init): use profile_init_path on fname,
+       not profile_init.
+
 Wed Aug 28 16:11:50 1996  Barry Jaspan  <bjaspan@mit.edu>
 
        * alt_prof.c (kadm5_get_config_params): fix default semantics to
index b9ea0dd0afc59c6d1ea0cfb007767f8b9b844394..a3e1c74ae059ac13e59e6dc6113249ac3bf4b10c 100644 (file)
@@ -61,9 +61,8 @@ krb5_aprof_init(fname, envname, acontextp)
            }
        }
     }
-    namelist[0] = fname;
     profile = (profile_t) NULL;
-    if (!(kret = profile_init(namelist, &profile))) {
+    if (fname && !(kret = profile_init_path(fname, &profile))) {
        *acontextp = (krb5_pointer) profile;
        return(0);
     }