if no home directory, log into '/'; delete old #ifdef/notdef and
[unix-history] / usr / src / libexec / bugfiler / error.c
CommitLineData
ecee9486 1/*
aec2eff2
KB
2 * Copyright (c) 1986, 1987 Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms are permitted
5e8b0e60
KB
6 * provided that the above copyright notice and this paragraph are
7 * duplicated in all such forms and that any documentation,
8 * advertising materials, and other materials related to such
9 * distribution and use acknowledge that the software was developed
10 * by the University of California, Berkeley. The name of the
11 * University may not be used to endorse or promote products derived
12 * from this software without specific prior written permission.
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
ecee9486
KB
16 */
17
18#ifndef lint
5e8b0e60 19static char sccsid[] = "@(#)error.c 5.6 (Berkeley) %G%";
aec2eff2 20#endif /* not lint */
ecee9486 21
d8336336 22#include <bug.h>
ecee9486
KB
23#include <syslog.h>
24#include <stdio.h>
ecee9486
KB
25
26static short err_redir; /* stderr redirected */
27
28/*
29 * seterr --
30 * redirect stderr for error processing
31 */
32seterr()
33{
d8336336 34 if (!freopen(ERROR_FILE, "a", stderr))
36e21f76 35 error("can't open error file %s.", ERROR_FILE);
ecee9486
KB
36 err_redir = YES;
37}
38
39/*
40 * error --
41 * write errors to log file and die
42 */
d8336336
KB
43error(fmt, arg)
44 register char *fmt,
45 *arg;
ecee9486
KB
46{
47 static char logmsg[MAXLINELEN]; /* syslog message */
48 char *strcpy(), *strcat();
49
50 if (err_redir) {
51 /* don't combine these, "fmt" may not require "arg" */
36e21f76 52 fprintf(stderr, "\t%s\n\t", tmpname);
d8336336 53 fprintf(stderr, fmt, arg);
36e21f76 54 fputc('\n', stderr);
ecee9486
KB
55 }
56 else {
d8336336
KB
57 sprintf(logmsg, "bugfiler: %s", fmt);
58 syslog(LOG_ERR, logmsg, arg);
ecee9486 59 }
ecee9486
KB
60#ifdef METOO
61 exit(ERR);
d8336336 62#else
ecee9486 63 exit(OK);
d8336336 64#endif
ecee9486 65}