]> git.sur5r.net Git - bacula/bacula/commitdiff
kes Fix memory pool call in ua_output.c. bug #934.
authorKern Sibbald <kern@sibbald.com>
Mon, 3 Sep 2007 21:40:52 +0000 (21:40 +0000)
committerKern Sibbald <kern@sibbald.com>
Mon, 3 Sep 2007 21:40:52 +0000 (21:40 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5445 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/dird/ua_output.c
bacula/technotes-2.3

index ab33393a1971787160b106d3ff3e0576ae1d8581..299847fee37668352c911861533133c77909eb8e 100644 (file)
@@ -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;
index bbf355db2043bf61898da7bbb522b8a13d073d3a..e2b9008a2e726b8326f99ecd54395e7f2b2fe80e 100644 (file)
@@ -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