From 9051ac36ad984b20bbde43cc34c39a36e66095b3 Mon Sep 17 00:00:00 2001 From: Klaus Kaempf Date: Sat, 29 Apr 2006 19:45:10 +0000 Subject: [PATCH] dont download other, even not for key checking --- zypp/source/yum/YUMSourceImpl.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zypp/source/yum/YUMSourceImpl.cc b/zypp/source/yum/YUMSourceImpl.cc index b02e750..8284260 100644 --- a/zypp/source/yum/YUMSourceImpl.cc +++ b/zypp/source/yum/YUMSourceImpl.cc @@ -164,6 +164,9 @@ namespace zypp for(; ! repomd.atEnd(); ++repomd) { + if ((*repomd)->type == "other") { // dont parse other.xml (#159316) + continue; + } if (!cache) { Pathname file_to_check = provideFile(_path + (*repomd)->location); -- 2.7.4