Change-Id: If1eca4485387ae15513164b4b3a126debe5661e0
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
SET(LIBZYPP_MAJOR "14")
SET(LIBZYPP_COMPATMINOR "30")
SET(LIBZYPP_MINOR "38")
-SET(LIBZYPP_PATCH "3")
+SET(LIBZYPP_PATCH "4")
#
-# LAST RELEASED: 14.38.3 (30)
+# LAST RELEASED: 14.38.4 (30)
# (The number in parenthesis is LIBZYPP_COMPATMINOR)
#=======
+-------------------------------------------------------------------
+Wed May 6 14:26:54 CEST 2015 - ma@suse.de
+
+- Fix repo alias containing ']' not handled correctly (bnc#929528)
+- version 14.38.4 (30)
+
-------------------------------------------------------------------
Tue May 5 14:33:23 CEST 2015 - ma@suse.de
name1= =foo
name2=f=oo
name3=foo=
+[te]st]
+name=foo
virtual void consume( const std::string §ion )
{
MIL << section << endl;
- BOOST_CHECK(section == "base" || section == "equal");
+ BOOST_CHECK(section == "base" || section == "equal" || section == "te]st");
}
virtual void consume( const std::string §ion, const std::string &key, const std::string &value )
if (trimmed[0] == '[')
{
- std::string::size_type pos = trimmed.find(']');
+ std::string::size_type pos = trimmed.rfind(']');
if ( pos != std::string::npos )
{
std::string section = trimmed.substr(1, pos-1);