From: Kern Sibbald Date: Mon, 3 Sep 2007 21:40:52 +0000 (+0000) Subject: kes Fix memory pool call in ua_output.c. bug #934. X-Git-Tag: Release-7.0.0~5750 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0c574385abbf12a3560118a75a2944afd1b0a061;p=bacula%2Fbacula kes Fix memory pool call in ua_output.c. bug #934. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5445 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/dird/ua_output.c b/bacula/src/dird/ua_output.c index ab33393a19..299847fee3 100644 --- a/bacula/src/dird/ua_output.c +++ b/bacula/src/dird/ua_output.c @@ -769,7 +769,7 @@ void bmsg(UAContext *ua, const char *fmt, va_list arg_ptr) msg = bs->msg; } if (!msg) { - msg = get_pool_memory(5000); + msg = get_memory(5000); } maxlen = sizeof_pool_memory(msg) - 1; diff --git a/bacula/technotes-2.3 b/bacula/technotes-2.3 index bbf355db20..e2b9008a2e 100644 --- a/bacula/technotes-2.3 +++ b/bacula/technotes-2.3 @@ -2,6 +2,7 @@ General: 03Sep07 +kes Fix memory pool call in ua_output.c. bug #934. kes Replace fnmatch.c and fnmatch.h by modified BSD versions. Add test program to fnmatch.c 02Sep07