skip "other" during checksum check
authorKlaus Kaempf <kkaempf@suse.de>
Wed, 26 Apr 2006 15:46:54 +0000 (15:46 +0000)
committerKlaus Kaempf <kkaempf@suse.de>
Wed, 26 Apr 2006 15:46:54 +0000 (15:46 +0000)
zypp/source/yum/YUMSourceImpl.cc

index 23a7e65..3c0d36c 100644 (file)
@@ -256,6 +256,9 @@ namespace zypp
              ! repomd.atEnd();
              ++repomd)
        {
+           if ((*repomd)->type == "other")     // don't parse 'other.xml' (#159316)
+               continue;
+
            Pathname src = provideFile(_path + (*repomd)->location);
            if (! checkCheckSum(src, (*repomd)->checksumType, (*repomd)->checksum))
            {