summaryrefslogtreecommitdiffstats
path: root/src/include/krb5
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2006-10-07 01:30:59 +0000
committerKen Raeburn <raeburn@mit.edu>2006-10-07 01:30:59 +0000
commitd3102c1d26e8ecd34fce241dc7a922c745f6423f (patch)
tree15fbffb2605527dadf82f1042653bf97cdabe385 /src/include/krb5
parent663ada96035bf3b90dc3cd4b38838c4a12dabbdc (diff)
downloadkrb5-d3102c1d26e8ecd34fce241dc7a922c745f6423f.tar.gz
krb5-d3102c1d26e8ecd34fce241dc7a922c745f6423f.tar.xz
krb5-d3102c1d26e8ecd34fce241dc7a922c745f6423f.zip
Use const pointers for error messages.
Add some debugging hooks in the libkrb5 support. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18661 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/krb5')
-rw-r--r--src/include/krb5/krb5.hin4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/krb5/krb5.hin b/src/include/krb5/krb5.hin
index 354ff12b11..2ad6be9c8e 100644
--- a/src/include/krb5/krb5.hin
+++ b/src/include/krb5/krb5.hin
@@ -2597,10 +2597,10 @@ krb5_vset_error_message (krb5_context, krb5_error_code, const char *, va_list);
* The string returned by this function must be freed using
* krb5_free_error_message.
*/
-char * KRB5_CALLCONV
+const char * KRB5_CALLCONV
krb5_get_error_message (krb5_context, krb5_error_code);
void KRB5_CALLCONV
-krb5_free_error_message (krb5_context, char *);
+krb5_free_error_message (krb5_context, const char *);
void KRB5_CALLCONV
krb5_clear_error_message (krb5_context);