369c962f5b13edc3fd4bf1dd7ee07696a73ff760
[krb5.git] / src / lib / gssapi / generic / disp_com_err_status.c
1 /*
2  * Copyright 1993 by OpenVision Technologies, Inc.
3  * 
4  * Permission to use, copy, modify, distribute, and sell this software
5  * and its documentation for any purpose is hereby granted without fee,
6  * provided that the above copyright notice appears in all copies and
7  * that both that copyright notice and this permission notice appear in
8  * supporting documentation, and that the name of OpenVision not be used
9  * in advertising or publicity pertaining to distribution of the software
10  * without specific, written prior permission. OpenVision makes no
11  * representations about the suitability of this software for any
12  * purpose.  It is provided "as is" without express or implied warranty.
13  * 
14  * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16  * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
18  * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
19  * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20  * PERFORMANCE OF THIS SOFTWARE.
21  */
22
23 #include "gssapiP_generic.h"
24 #include "com_err.h"
25
26 /* XXXX internationalization!! */
27
28 /**/
29
30 static int init_et = 0;
31 static const char * const no_error = "No error";
32
33 /**/
34
35 /* if status_type == GSS_C_GSS_CODE, return up to three error messages,
36      for routine errors, call error, and status, in that order.
37      message_context == 0 : print the routine error
38      message_context == 1 : print the calling error
39      message_context > 2  : print supplementary info bit (message_context-2)
40    if status_type == GSS_C_MECH_CODE, return the output from error_message()
41    */
42
43 OM_uint32 INTERFACE
44 g_display_com_err_status(minor_status, status_value, status_string)
45      OM_uint32 *minor_status;
46      OM_uint32 status_value;
47      gss_buffer_t status_string;
48 {
49    status_string->length = 0;
50    status_string->value = NULL;
51
52    if (!init_et) {
53       initialize_ggss_error_table();
54       init_et = 1;
55    }
56
57    if (! g_make_string_buffer(((status_value == 0)?no_error:
58                                error_message(status_value)),
59                               status_string)) {
60       *minor_status = ENOMEM;
61       return(GSS_S_FAILURE);
62    }
63    *minor_status = 0;
64    return(GSS_S_COMPLETE);
65 }