From: Kern Sibbald Date: Thu, 28 Jan 2010 13:41:35 +0000 (+0100) Subject: Remove file_index sequential check -- reported by Graham X-Git-Tag: Release-5.0.1~146 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=561760c3d9a35464d4031207d70d572e672e3149;p=bacula%2Fbacula Remove file_index sequential check -- reported by Graham --- diff --git a/bacula/src/filed/verify_vol.c b/bacula/src/filed/verify_vol.c index 7a9e88eac9..c3bdd2463b 100644 --- a/bacula/src/filed/verify_vol.c +++ b/bacula/src/filed/verify_vol.c @@ -147,12 +147,6 @@ void do_verify_volume(JCR *jcr) goto bail_out; } Dmsg2(30, "Got Attr: FilInx=%d type=%d\n", record_file_index, type); - if (record_file_index != file_index) { - Jmsg(jcr, M_FATAL, 0, _("Record header file index %ld not equal record index %ld\n"), - file_index, record_file_index); - Dmsg0(0, "File index error\n"); - goto bail_out; - } ap = sd->msg; while (*ap++ != ' ') /* skip record file index */ ;