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