[svn-inject] Installing original source of suphp
[manu/suphp.git] / src / error.c
1 /*
2     suPHP - (c)2002-2004 Sebastian Marsching <sebastian@marsching.com>
3     
4     This file is part of suPHP.
5
6     suPHP 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     suPHP 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 suPHP; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21
22 #include <stdio.h>
23 #include <unistd.h>
24 #include <errno.h>
25 #include <string.h>
26
27 #include "suphp.h"
28
29 void error_exit(int errcode)
30 {
31  fprintf(stderr, "Error on executing script(%d)\n", errcode);
32  _exit(errcode);
33 }
34
35 void error_msg_exit(int errcode, char *msg, char *file, int line)
36 {
37  fprintf(stderr, "Error in %s on line %d: %s\n", file, line, msg);
38  _exit(errcode);
39 }
40
41 void error_sysmsg_exit(int errcode, char *msg, char *file, int line)
42 {
43  if (log_initialized)
44   suphp_log_error("System error: %s (%s)", msg, strerror(errno));
45  fprintf(stderr, "Error in %s on line %d: %s (%s)\n", file, line, msg, strerror(errno));
46  _exit(errcode);
47 }