1krb5_wrap_error_message - Add a prefix to a different error code's message. 2============================================================================= 3 4.. 5 6.. c:function:: void krb5_wrap_error_message(krb5_context ctx, krb5_error_code old_code, krb5_error_code code, const char * fmt, ... ) 7 8.. 9 10 11:param: 12 13 **[in]** **ctx** - Library context 14 15 **[in]** **old_code** - Previous error code 16 17 **[in]** **code** - Error code 18 19 **[in]** **fmt** - Format string for error message prefix 20 21 22.. 23 24 25 26.. 27 28 29 30 31 32 33 34Format a message and prepend it to the message for *old_code* . The prefix will be separated from the old message with a colon and space. Set the resulting message as the extended error message for *code* . 35 36 37 38 39 40 41.. 42 43 44 45 46 47