From 1251e3c4b2b4845fc5a0ee01b56a6c2669437cad Mon Sep 17 00:00:00 2001 From: Nathan Angelacos Date: Tue, 10 May 2011 01:22:50 +0000 Subject: 0.9.29 candidate --- src/h_error.c | 41 ++++++++++++++++++++--------------------- 1 file changed, 20 insertions(+), 21 deletions(-) (limited to 'src/h_error.c') diff --git a/src/h_error.c b/src/h_error.c index 46bd6e1..0dcd638 100644 --- a/src/h_error.c +++ b/src/h_error.c @@ -1,23 +1,22 @@ -/* - * -------------------------------------------------------------------------- - * Error functions for haserl - * Copyright (c) 2003-2006 Nathan Angelacos (nangel@users.sourceforge.net) +/* -------------------------------------------------------------------------- + * Copyright 2003-2011 (inclusive) Nathan Angelacos + * (nangel@users.sourceforge.net) + * + * This file is part of haserl. * - * This program is free software; you can redistribute it and/or modify it under - * the terms of the GNU General Public License, version 2, as published by the Free - * Software Foundation. + * Haserl is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2, + * as published by the Free Software Foundation. * - * This program is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - * more details. + * Haserl is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License along with - * this program; if not, write to the Free Software Foundation, Inc., 59 - * Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU General Public License + * along with haserl. If not, see . * - * ------------------------------------------------------------------------- - */ + * ------------------------------------------------------------------------ */ #if HAVE_CONFIG_H #include @@ -66,9 +65,9 @@ die_with_error (char *msg) void die_with_message (void *sp, char *where, const char *s, ...) { - #ifndef JUST_LUACSHELL +#ifndef JUST_LUACSHELL script_t *script = sp; - #endif +#endif va_list p; FILE *fo = stderr; @@ -85,14 +84,14 @@ die_with_message (void *sp, char *where, const char *s, ...) va_start (p, s); vfprintf (fo, s, p); va_end (p); - #ifndef JUST_LUACSHELL +#ifndef JUST_LUACSHELL if (where && sp) - { + { fprintf (fo, " near line %d of %s\n", count_lines (script->buf, script->size, where), script->name); } - #endif +#endif printf ("\n"); if (getenv ("REQUEST_METHOD")) -- cgit v1.2.3