summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2001-06-20 17:26:56 +0000
committerEzra Peisach <epeisach@mit.edu>2001-06-20 17:26:56 +0000
commitd19b86a9d02f7a2ec02fc958b41f38b66ba36e14 (patch)
tree6043dda54d1b82228d5602a7577d8f1ad3c669ed /src
parente86b79804444fa6b7271014ba5ee9267330a32d6 (diff)
downloadkrb5-d19b86a9d02f7a2ec02fc958b41f38b66ba36e14.tar.gz
krb5-d19b86a9d02f7a2ec02fc958b41f38b66ba36e14.tar.xz
krb5-d19b86a9d02f7a2ec02fc958b41f38b66ba36e14.zip
* server_internal.h: Add prototype for kdb_iter_entry()
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13419 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/lib/kadm5/ChangeLog5
-rw-r--r--src/lib/kadm5/server_internal.h3
2 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/kadm5/ChangeLog b/src/lib/kadm5/ChangeLog
index 1a1e13f2b4..afdef749ba 100644
--- a/src/lib/kadm5/ChangeLog
+++ b/src/lib/kadm5/ChangeLog
@@ -1,5 +1,8 @@
-2001-06-18 Ezra Peisach <epeisach@mit.edu>
+2001-06-20 Ezra Peisach <epeisach@mit.edu>
+
+ * server_internal.h: Add prototype for kdb_iter_entry().
+2001-06-18 Ezra Peisach <epeisach@mit.edu>
* alt_prof.c (krb5_read_realm_params): Cast argument to isspace()
to int.
diff --git a/src/lib/kadm5/server_internal.h b/src/lib/kadm5/server_internal.h
index 4a99d267df..1b9cba339a 100644
--- a/src/lib/kadm5/server_internal.h
+++ b/src/lib/kadm5/server_internal.h
@@ -54,6 +54,9 @@ krb5_error_code kdb_put_entry(kadm5_server_handle_t handle,
krb5_db_entry *kdb, osa_princ_ent_rec *adb);
krb5_error_code kdb_delete_entry(kadm5_server_handle_t handle,
krb5_principal name);
+krb5_error_code kdb_iter_entry(kadm5_server_handle_t handle,
+ void (*iter_fct)(void *, krb5_principal),
+ void *data);
int init_dict(kadm5_config_params *);
int find_word(const char *word);