From: Kern Sibbald Date: Mon, 9 Dec 2002 16:33:03 +0000 (+0000) Subject: Fix FileSet MD5 in JCR X-Git-Tag: Release-1.28~32 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d243896e67cd2b9af367cfd72ed804416157cb4d;p=bacula%2Fbacula Fix FileSet MD5 in JCR git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@234 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/stored/butil.c b/bacula/src/stored/butil.c index 318408428a..a0892aa845 100644 --- a/bacula/src/stored/butil.c +++ b/bacula/src/stored/butil.c @@ -207,6 +207,8 @@ JCR *setup_jcr(char *name, char *device, BSR *bsr) strcpy(jcr->Job, name); jcr->fileset_name = get_pool_memory(PM_FNAME); strcpy(jcr->fileset_name, "Dummy.fileset.name"); + jcr->fileset_md5 = get_pool_memory(PM_FNAME); + strcpy(jcr->fileset_md5, "Dummy.fileset.md5"); jcr->JobId = 1; jcr->JobType = JT_BACKUP; jcr->JobLevel = L_FULL;