X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Flib%2Fmessage.c;h=8151ccd28dbe9d1f594e128e9bbaac127e2ae759;hb=f5727a2417ede1709c78329eceee239a88f6bf84;hp=2e14810576a36dffb21e9d188d239444d31c0f8c;hpb=0da0e454b2bc05001b0f4c9d151a9e57c54ff243;p=bacula%2Fbacula diff --git a/bacula/src/lib/message.c b/bacula/src/lib/message.c index 2e14810576..8151ccd28d 100755 --- a/bacula/src/lib/message.c +++ b/bacula/src/lib/message.c @@ -6,28 +6,23 @@ * Version $Id$ * */ - /* - Copyright (C) 2000-2004 Kern Sibbald and John Walker + Copyright (C) 2000-2005 Kern Sibbald This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of - the License, or (at your option) any later version. + modify it under the terms of the GNU General Public License + version 2 as ammended with additional clauses defined in the + file LICENSE in the main source directory. 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. - - 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. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + the file LICENSE for additional details. */ + #include "bacula.h" #include "jcr.h" @@ -760,10 +755,10 @@ d_msg(const char *file, int line, int level, const char *fmt,...) char buf[5000]; int len; va_list arg_ptr; - int details = TRUE; + bool details = true; if (level < 0) { - details = FALSE; + details = false; level = -level; }