2003-12-19 Ken Raeburn <raeburn@mit.edu>
+ * realm_iter.c (krb5_realm_iterator_create): Array NAMES is now
+ const.
+
* prompter.c (catch_signals, restore_signals): Take pointer to old
signal handler info as new argument.
(osiginfo): New typedef.
krb5_error_code KRB5_CALLCONV
krb5_realm_iterator_create(krb5_context context, void **iter_p)
{
- static const char *names[] = { "realms", 0 };
+ static const char *const names[] = { "realms", 0 };
return profile_iterator_create(context->profile, names,
PROFILE_ITER_LIST_SECTION |