+Tue Oct 10 03:09:27 2000 Ezra Peisach <epeisach@mit.edu>
+
+ * server_dict.c (init_dict): Change syslog() to krb5_klog_syslog()
+ so that errors go to the intended place as indicated by krb5.conf.
+
2000-06-30 Tom Yu <tlyu@mit.edu>
* adb_openclose.c (osa_adb_create_db): Default to btree.
if(word_list != NULL && word_block != NULL)
return KADM5_OK;
if (! (params->mask & KADM5_CONFIG_DICT_FILE)) {
- syslog(LOG_INFO, "No dictionary file specified, continuing "
+ krb5_klog_syslog(LOG_INFO, "No dictionary file specified, continuing "
"without one.");
return KADM5_OK;
}
if ((fd = open(params->dict_file, O_RDONLY)) == -1) {
if (errno == ENOENT) {
- syslog(LOG_ERR, "WARNING! Cannot find dictionary file %s, "
- "continuing without one.", params->dict_file);
+ krb5_klog_syslog(LOG_ERR,
+ "WARNING! Cannot find dictionary file %s, "
+ "continuing without one.", params->dict_file);
return KADM5_OK;
} else
return errno;