xref: /freebsd/crypto/krb5/src/ccapi/common/cci_debugging.c (revision 7f2fe78b9dd5f51c821d771b63d2e096f6fd49e9)
1 /* ccapi/common/cci_debugging.c */
2 /*
3  * Copyright 2006 Massachusetts Institute of Technology.
4  * All Rights Reserved.
5  *
6  * Export of this software from the United States of America may
7  * require a specific license from the United States Government.
8  * It is the responsibility of any person or organization contemplating
9  * export to obtain such a license before exporting.
10  *
11  * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
12  * distribute this software and its documentation for any purpose and
13  * without fee is hereby granted, provided that the above copyright
14  * notice appear in all copies and that both that copyright notice and
15  * this permission notice appear in supporting documentation, and that
16  * the name of M.I.T. not be used in advertising or publicity pertaining
17  * to distribution of the software without specific, written prior
18  * permission.  Furthermore if you modify this software you must label
19  * your software as modified software and not distribute it in such a
20  * fashion that it might be confused with the original M.I.T. software.
21  * M.I.T. makes no representations about the suitability of
22  * this software for any purpose.  It is provided "as is" without express
23  * or implied warranty.
24  */
25 
26 #include "cci_common.h"
27 #include "cci_os_debugging.h"
28 
29 /* ------------------------------------------------------------------------ */
30 
_cci_check_error(cc_int32 in_error,const char * in_function,const char * in_file,int in_line)31 cc_int32 _cci_check_error (cc_int32    in_error,
32                            const char *in_function,
33                            const char *in_file,
34                            int         in_line)
35 {
36     /* Do not log for flow control errors or when there is no error at all */
37     if (in_error != ccNoError && in_error != ccIteratorEnd) {
38         cci_debug_printf ("%s() got %d at %s: %d", in_function,
39                           in_error, in_file, in_line);
40     }
41 
42     return in_error;
43 }
44 
45 /* ------------------------------------------------------------------------ */
46 
cci_debug_printf(const char * in_format,...)47 void cci_debug_printf (const char *in_format, ...)
48 {
49     va_list args;
50 
51     va_start (args, in_format);
52     cci_os_debug_vprintf (in_format, args);
53     va_end (args);
54 }
55