From 5efa1d94281a8477d854d4051cbf52905b17ad04 Mon Sep 17 00:00:00 2001 From: Michael Andres Date: Tue, 15 Apr 2014 16:34:41 +0200 Subject: [PATCH] Repository: fix xml output --- zypp/Repository.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zypp/Repository.cc b/zypp/Repository.cc index 287ef58..4460978 100644 --- a/zypp/Repository.cc +++ b/zypp/Repository.cc @@ -337,8 +337,8 @@ namespace zypp std::ostream & dumpAsXmlOn( std::ostream & str, const Repository & obj ) { return xmlout::node( str, "repository", { - { "alias", obj.name() }, - { "name", obj.alias() } + { "name", obj.name() }, + { "alias", obj.alias() } } ); } -- 2.7.4