Initial enhanced error message support, similar to what I sent to
authorKen Raeburn <raeburn@mit.edu>
Sun, 26 Mar 2006 20:55:59 +0000 (20:55 +0000)
committerKen Raeburn <raeburn@mit.edu>
Sun, 26 Mar 2006 20:55:59 +0000 (20:55 +0000)
commitb5a541c640dfedda7480332f4838e30f0a9e1770
treeb5182550f1c3fb475c3b71d15f4944fbcc16c4bb
parent976289e5db9426efb6aa56cf0c97b89b4e30d1b4
Initial enhanced error message support, similar to what I sent to
krbdev except for some function renaming (krb5_free_error was already
in use, so added _message to everything), and the context is allowed
to be NULL (in which case we fall back to error_message() and storing
no strings) to simplify some code.

Low-level routines in the support library, using a private data
structure; higher-level routines in libkrb5, using a krb5_context.

Added error info strings to the KRB_ERR_GENERIC case in gc_via_tkt.c
and the python sample service location plugin.  Added code to kinit
and kvno to look up and display the strings.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17776 dc483132-0cff-0310-8789-dd5450dbe970
23 files changed:
src/clients/kinit/ChangeLog
src/clients/kinit/kinit.c
src/clients/kvno/ChangeLog
src/clients/kvno/kvno.c
src/include/ChangeLog
src/include/k5-err.h [new file with mode: 0644]
src/include/k5-int.h
src/include/krb5.hin
src/lib/krb5/ChangeLog
src/lib/krb5/krb/ChangeLog
src/lib/krb5/krb/Makefile.in
src/lib/krb5/krb/gc_via_tkt.c
src/lib/krb5/krb/kerrs.c [new file with mode: 0644]
src/lib/krb5/krb5_libinit.c
src/lib/krb5/libkrb5.exports
src/plugins/locate/python/ChangeLog
src/plugins/locate/python/Makefile.in
src/plugins/locate/python/py-locate.c
src/util/support/ChangeLog
src/util/support/Makefile.in
src/util/support/errors.c [new file with mode: 0644]
src/util/support/libkrb5support.exports
src/util/support/threads.c