From 396e4a86eb7b5cf6649db38c29a69192f3c5fcb9 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Fri, 4 Jan 2008 09:01:55 +0000 Subject: [PATCH] Update copyright git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.2@6195 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/lib/daemon.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bacula/src/lib/daemon.c b/bacula/src/lib/daemon.c index 16196e0309..5bfd7f84d7 100644 --- a/bacula/src/lib/daemon.c +++ b/bacula/src/lib/daemon.c @@ -1,7 +1,7 @@ /* Bacula® - The Network Backup Solution - Copyright (C) 2000-2007 Free Software Foundation Europe e.V. + Copyright (C) 2000-2008 Free Software Foundation Europe e.V. The main author of Bacula is Kern Sibbald, with contributions from many others, a complete list can be found in the file AUTHORS. @@ -26,11 +26,11 @@ Switzerland, email:ftf@fsfeurope.org. */ /* - * daemon.c by Kern Sibbald + * daemon.c by Kern Sibbald 2000 * * Version $Id$ * - * this code is inspired by the Prentice Hall book + * This code is inspired by the Prentice Hall book * "Unix Network Programming" by W. Richard Stevens * and later updated from his book "Advanced Programming * in the UNIX Environment" @@ -63,7 +63,7 @@ daemon_start() Dmsg0(900, "Enter daemon_start\n"); if ( (cpid = fork() ) < 0) { berrno be; - Emsg1(M_ABORT, 0, _("Cannot fork to become daemon: %s\n"), be.bstrerror()); + Emsg1(M_ABORT, 0, _("Cannot fork to become daemon: ERR=%s\n"), be.bstrerror()); } else if (cpid > 0) { exit(0); /* parent exits */ } -- 2.39.2