diff options
author | 2011-09-09 18:59:01 +0100 | |
---|---|---|
committer | 2011-09-09 18:59:01 +0100 | |
commit | 81d87f2466fcccf199a0a7363062eab649acb87a (patch) | |
tree | b32f7708633a2b5cffb732a9afbae9282012b497 | |
parent | 675e9ac0bb5ddac09b561e1618bd9720748a9c00 (diff) | |
download | paludis-81d87f2466fcccf199a0a7363062eab649acb87a.tar.gz paludis-81d87f2466fcccf199a0a7363062eab649acb87a.tar.xz |
Get name and email from metadata.xml
-rw-r--r-- | paludis/repositories/e/xml_things.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/paludis/repositories/e/xml_things.cc b/paludis/repositories/e/xml_things.cc index 5eb3e9bff..614488b83 100644 --- a/paludis/repositories/e/xml_things.cc +++ b/paludis/repositories/e/xml_things.cc @@ -1,7 +1,7 @@ /* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* - * Copyright (c) 2006, 2007, 2008, 2009, 2010 Ciaran McCreesh + * Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011 Ciaran McCreesh * * This file is part of the Paludis package manager. Paludis is free software; * you can redistribute it and/or modify it under the terms of the GNU General @@ -357,7 +357,7 @@ paludis_xml_things_create_metadata_xml_from_xml_file(const FSPath & filename) else p = email; - result->maintainers()->push_back(email); + result->maintainers()->push_back(p); } } |