Moved event.c/h
[tinc] / lib / error.c
1 /*
2     error.c -- generalized error handling
3     Copyright (C) 2000 Ivo Timmermans <itimmermans@bigfoot.com>
4                   2000 Guus Sliepen <guus@sliepen.warande.net>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id: error.c,v 1.1 2000/10/19 20:56:49 zarq Exp $
21 */
22
23 #include "config.h"
24
25 #include <stdio.h>
26
27 #ifdef STDC_HEADERS
28 # include <stdarg.h>
29 #endif
30
31 #ifdef HAVE_SYSLOG_H
32 # include <syslog.h>
33 #endif
34
35 #include <error.h>
36 #include <system.h>
37
38 void error(int severity, const char *message, ...)
39 {
40   va_list v;
41   extern int detached;
42
43   va_start(v, message);
44
45 #ifdef HAVE_SYSLOG
46   if(detached)
47     {
48       syslog(LOG_ERR, _(message), v);
49     }
50   else
51 #endif /* HAVE_SYSLOG */
52     {
53       vfprintf(stderr, _(message), v);
54       fputs("\n", stderr);
55     }
56   va_end(v);
57
58   if(severity | ERR_FATAL)
59     exit(1);
60 }