]> git.sur5r.net Git - bacula/bacula/commitdiff
Remove FI sanity check code that does not apply after a VirtualFull
authorKern Sibbald <kern@sibbald.com>
Mon, 18 Jan 2010 12:31:00 +0000 (13:31 +0100)
committerKern Sibbald <kern@sibbald.com>
Mon, 18 Jan 2010 12:31:00 +0000 (13:31 +0100)
bacula/src/stored/bextract.c
bacula/src/stored/bls.c
bacula/src/stored/bscan.c

index 71c9da6bcb7c5484d33f2989be228e0740dddb96..d0bdc05685d7b1fbb72a479701bac7152d38c568 100644 (file)
@@ -329,13 +329,7 @@ static bool record_cb(DCR *dcr, DEV_RECORD *rec)
          Emsg0(M_ERROR_TERM, 0, _("Cannot continue.\n"));
       }
 
-      if (attr->file_index != rec->FileIndex) {
-         Emsg2(M_ERROR_TERM, 0, _("Record header file index %ld not equal record index %ld\n"),
-            rec->FileIndex, attr->file_index);
-      }
-
       if (file_is_included(ff, attr->fname) && !file_is_excluded(ff, attr->fname)) {
-
          attr->data_stream = decode_stat(attr->attr, &attr->statp, &attr->LinkFI);
          if (!is_restore_stream_supported(attr->data_stream)) {
             if (!non_support_data++) {
index 0526c5212843b931408594b862a567b774cbc8a6..cb270d955d9894c3ee2e7b1b9dfdece1ac1e7e32 100644 (file)
@@ -31,7 +31,6 @@
  * 
  *  Kern Sibbald, MM
  *
- *   Version $Id$
  */
 
 #include "bacula.h"
@@ -393,11 +392,6 @@ static bool record_cb(DCR *dcr, DEV_RECORD *rec)
          return true;
       }
 
-      if (attr->file_index != rec->FileIndex) {
-         Emsg2(M_ERROR, 0, _("Record FileIndex %ld not equal Attrib FileIndex %ld\n"),
-               rec->FileIndex, attr->file_index);
-      }
-
       attr->data_stream = decode_stat(attr->attr, &attr->statp, &attr->LinkFI);
       build_attr_output_fnames(jcr, attr);
 
index eb1d1213067988d7f7c9b716025f93bbe82bd5e5..854f70dffa4d77dd01eaa7cd25c9b80707047b90 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2001-2008 Free Software Foundation Europe e.V.
+   Copyright (C) 2001-2010 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
@@ -668,11 +668,6 @@ static bool record_cb(DCR *dcr, DEV_RECORD *rec)
          Emsg0(M_ERROR_TERM, 0, _("Cannot continue.\n"));
       }
 
-      if (attr->file_index != rec->FileIndex) {
-         Emsg2(M_ERROR_TERM, 0, _("Record header file index %ld not equal record index %ld\n"),
-            rec->FileIndex, attr->file_index);
-      }
-
       if (verbose > 1) {
          decode_stat(attr->attr, &attr->statp, &attr->LinkFI);
          build_attr_output_fnames(bjcr, attr);