~ubuntu-branches/ubuntu/natty/freeradius/natty-updates

« back to all changes in this revision

Viewing changes to src/modules/rlm_x99_token/x99_log.c

  • Committer: Bazaar Package Importer
  • Author(s): Paul Hampson
  • Date: 2006-01-15 13:34:13 UTC
  • mto: (3.1.3 dapper) (4.1.3 sid) (1.1.14 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20060115133413-zo1dslttvdoalqym
Tags: upstream-1.1.0
ImportĀ upstreamĀ versionĀ 1.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * x99_log.c
3
 
 * $Id: x99_log.c,v 1.6 2002/07/12 06:45:53 fcusack Exp $
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
 
 */
21
 
 
22
 
#ifdef FREERADIUS
23
 
#include "radiusd.h"
24
 
#endif
25
 
#include "x99.h"
26
 
 
27
 
#include <stdio.h>
28
 
#include <stdlib.h>
29
 
#include <stdarg.h>
30
 
#include <string.h>
31
 
#ifndef FREERADIUS
32
 
#include <syslog.h>
33
 
#endif
34
 
 
35
 
static const char rcsid[] = "$Id: x99_log.c,v 1.6 2002/07/12 06:45:53 fcusack Exp $";
36
 
 
37
 
void
38
 
x99_log(int level, const char *format, ...)
39
 
{
40
 
    va_list ap;
41
 
    char *fmt;
42
 
 
43
 
    va_start(ap, format);
44
 
    fmt = malloc(strlen(X99_MODULE_NAME) + strlen(format) + 3);
45
 
    if (!fmt) {
46
 
        va_end(ap);
47
 
        return;
48
 
    }
49
 
    (void) sprintf(fmt, "%s: %s", X99_MODULE_NAME, format);
50
 
 
51
 
#ifdef FREERADIUS
52
 
    (void) vradlog(level, fmt, ap);
53
 
#else
54
 
    vsyslog(level, fmt, ap);
55
 
#endif
56
 
 
57
 
    va_end(ap);
58
 
    free(fmt);
59
 
}
60