From 09e8d4dc189357f44968dc257301bdf26becefa1 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Thu, 7 Jul 2016 15:24:30 +0200 Subject: [PATCH] Fix error message about the stream 26 (PLUGIN_NAME) in bextract --- bacula/src/stored/bextract.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bacula/src/stored/bextract.c b/bacula/src/stored/bextract.c index 717cecae8b..a300792f3c 100644 --- a/bacula/src/stored/bextract.c +++ b/bacula/src/stored/bextract.c @@ -646,7 +646,9 @@ static bool record_cb(DCR *dcr, DEV_RECORD *rec) prog_name_msg++; } break; - + case STREAM_PLUGIN_NAME: + /* Just ignore the plugin name */ + break; default: /* If extracting, weird stream (not 1 or 2), close output file anyway */ if (extract) { -- 2.39.5