srv_output.c (lang_error_message): Local variable is assigned from
authorEzra Peisach <epeisach@mit.edu>
Tue, 9 May 1995 20:47:44 +0000 (20:47 +0000)
committerEzra Peisach <epeisach@mit.edu>
Tue, 9 May 1995 20:47:44 +0000 (20:47 +0000)
error_message() which returns a const char *. Should be assigned to same.

srv_acl.c: Added const to acl_acl_file definition. default_acl_file is a
const char * and gets assigned to it.

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

src/kadmin/v5server/ChangeLog
src/kadmin/v5server/srv_acl.c
src/kadmin/v5server/srv_output.c

index b9e2ba1715d7ddbb195266b700a75f8285154fde..90277b0c28e64bac8e7881c9044bd31df38200e7 100644 (file)
@@ -1,3 +1,12 @@
+Sat May 9 17:46:31 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
+
+       * srv_output.c (lang_error_message): Local variable is assigned
+               from error_message() which returns a const char *. Should
+               be assigned to same.
+
+       * srv_acl.c: Added const to acl_acl_file
+               definition. default_acl_file is a const char * and gets
+               assigned to it.
 
 Tue May 9 15:29:10 EDT 1995    Paul Park       (pjpark@mit.edu)
        Add new administrative protocol support functions and fix bugs.
index 74fd6d72616bb94007acb852d983677a7193f8f0..1e320daf1763480ecaaf0a165d211b769b734f9d 100644 (file)
@@ -64,7 +64,7 @@ static aent_t *acl_list_head = (aent_t *) NULL;
 static aent_t  *acl_list_tail = (aent_t *) NULL;
 
 static const char *acl_default_file = "/etc/krb5_adm.acl";
-static char *acl_acl_file = (char *) NULL;
+static const char *acl_acl_file = (char *) NULL;
 static int acl_inited = 0;
 static int acl_debug_level = 0;
 /*
index 0453802e5ede66c2c42f6feb3a9f76b8df3a4018..37a1a21a26320e9f99ca611ce8271ea57e1194d2 100644 (file)
@@ -68,7 +68,7 @@ lang_error_message(lang, kval)
     krb5_error_code    kval;
 {
     char       *ret;
-    char       *ermsg;
+    const char *ermsg;
 
     ermsg = (char *) error_message(kval);
     if (lang && output_lang_supported(lang)) {