86a7178792f3994eebb860956a1c38ae2407081d
[freeradius.git] / src / modules / rlm_otp / otp_log.c
1 /*
2  * otp_log.c
3  * $Id$
4  *
5  *   This program is free software; you can redistribute it and/or modify
6  *   it under the terms of the GNU General Public License as published by
7  *   the Free Software Foundation; either version 2 of the License, or
8  *   (at your option) any later version.
9  *
10  *   This program is distributed in the hope that it will be useful,
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *   GNU General Public License for more details.
14  *
15  *   You should have received a copy of the GNU General Public License
16  *   along with this program; if not, write to the Free Software
17  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  *
19  * Copyright 2002  Google, Inc.
20  * Copyright 2005 TRI-D Systems, Inc.
21  */
22
23 #include "otp.h"
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <stdarg.h>
28 #include <string.h>
29 #ifdef PAM
30 #include <syslog.h>
31 #endif
32
33 static const char rcsid[] = "$Id$";
34
35 void
36 otp_log(int level, const char *format, ...)
37 {
38   va_list ap;
39   va_start(ap, format);
40
41 #ifdef FREERADIUS
42   (void) vradlog(level, format, ap);
43 #else
44   vsyslog(level, format, ap);
45 #endif
46
47   va_end(ap);
48 }