From 5718eb430480b95d0dfb3ef02415667ad6ba41b2 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Mon, 12 Apr 2010 08:55:18 -0400 Subject: [PATCH] Add missing break. Pointed out by James --- bacula/src/filed/backup.c | 1 + 1 file changed, 1 insertion(+) diff --git a/bacula/src/filed/backup.c b/bacula/src/filed/backup.c index a03f040773..580dd7d4c8 100644 --- a/bacula/src/filed/backup.c +++ b/bacula/src/filed/backup.c @@ -1197,6 +1197,7 @@ bool encode_and_send_attributes(JCR *jcr, FF_PKT *ff_pkt, int &data_stream) memcpy(sd->msg + sd->msglen, ff_pkt->object, ff_pkt->object_len); sd->msglen += ff_pkt->object_len; stat = sd->send(); + break; default: stat = sd->fsend("%ld %d %s%c%s%c%c%s%c", jcr->JobFiles, ff_pkt->type, ff_pkt->fname, 0, attribs, 0, 0, attribsEx, 0); -- 2.39.5