From 0c574385abbf12a3560118a75a2944afd1b0a061 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Mon, 3 Sep 2007 21:40:52 +0000 Subject: [PATCH] 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 --- bacula/src/dird/ua_output.c | 2 +- bacula/technotes-2.3 | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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 -- 2.39.5