* alt_prof.c (krb5_aprof_init): profile_init takes a
authorEzra Peisach <epeisach@mit.edu>
Thu, 29 Jun 2000 01:05:21 +0000 (01:05 +0000)
committerEzra Peisach <epeisach@mit.edu>
Thu, 29 Jun 2000 01:05:21 +0000 (01:05 +0000)
        profile_filespec_t as argument instad of char **.

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

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

index 59ea4aecda4d7c2881499a0c0db0a4496c549fdc..3220d18302f7d978428c239c9de7bb189343a60b 100644 (file)
@@ -1,3 +1,8 @@
+2000-06-28  Ezra Peisach  <epeisach@mit.edu>
+
+       * alt_prof.c (krb5_aprof_init): profile_init takes a
+       profile_filespec_t as argument instad of char **.
+
 2000-06-23  Ken Raeburn  <raeburn@mit.edu>
 
        * alt_prof.c (kadm5_get_config_params): Include des3 in supported
index 4d1e7692092e2113efcd0a3c2a3d13d1425d32b4..3cf58a6f3e2ef4da3122f53d3d432c0c3645556c 100644 (file)
@@ -67,10 +67,10 @@ krb5_aprof_init(fname, envname, acontextp)
     krb5_pointer       *acontextp;
 {
     krb5_error_code    kret;
-    const char         *namelist[2];
+    profile_filespec_t         namelist[2];
     profile_t          profile;
     
-    namelist[1] = (char *) NULL;
+    namelist[1] = (profile_filespec_t) NULL;
     profile = (profile_t) NULL;
     if (envname) {
        if ((namelist[0] = getenv(envname))) {