From: Kern Sibbald Date: Tue, 16 Dec 2008 16:06:04 +0000 (+0000) Subject: Correct missing return in Darwin code. X-Git-Tag: Release-7.0.0~3622 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7c98e73f2e4e2604e44c317db260a3b167aa79b1;p=bacula%2Fbacula Correct missing return in Darwin code. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8173 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/filed/xattr.c b/bacula/src/filed/xattr.c index 818773d1fd..4b29474044 100644 --- a/bacula/src/filed/xattr.c +++ b/bacula/src/filed/xattr.c @@ -504,6 +504,7 @@ static bool darwin_parse_xattr_stream(JCR *jcr, int stream) case STREAM_XATTR_DARWIN: return generic_xattr_parse_streams(jcr); } + return false; } #elif defined(HAVE_FREEBSD_OS) static bool freebsd_build_xattr_streams(JCR *jcr, FF_PKT *ff_pkt) diff --git a/bacula/src/version.h b/bacula/src/version.h index 9126674bda..68dfa653bf 100644 --- a/bacula/src/version.h +++ b/bacula/src/version.h @@ -3,9 +3,9 @@ */ #undef VERSION -#define VERSION "2.5.23" -#define BDATE "14 December 2008" -#define LSMDATE "14Dec08" +#define VERSION "2.5.24" +#define BDATE "16 December 2008" +#define LSMDATE "16Dec08" #define PROG_COPYRIGHT "Copyright (C) %d-2008 Free Software Foundation Europe e.V.\n" #define BYEAR "2008" /* year for copyright messages in progs */ diff --git a/bacula/technotes-2.5 b/bacula/technotes-2.5 index 3ce50854ef..81fdc109fe 100644 --- a/bacula/technotes-2.5 +++ b/bacula/technotes-2.5 @@ -10,6 +10,8 @@ filepattern (restore with regex in bsr) mixed priorities General: +16Dec08 +kes Correct missing return in Darwin code. 15Dec08 ebl Copy joblog after a Copy job 14Dec08