From 00e7e9f27a7783d8c1fe46fb60d439b79398aff3 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Sat, 12 Jun 2004 19:11:34 +0000 Subject: [PATCH] Fix ACL code git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1417 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/filed/backup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacula/src/filed/backup.c b/bacula/src/filed/backup.c index 7f745aac91..5cdc25b9e6 100644 --- a/bacula/src/filed/backup.c +++ b/bacula/src/filed/backup.c @@ -518,7 +518,7 @@ static int save_file(FF_PKT *ff_pkt, void *vjcr) /* Send the buffer to the storage deamon */ sd->msg = acl_text; - sd->msglen = strlen(acl_text); + sd->msglen = strlen(acl_text) + 1; if(!bnet_send(sd)) { sd->msg = msgsave; sd->msglen = 0; -- 2.39.5