- Adapt to rpms new way of quoting whitespace in pathnames.(bnc #426924)
authorMichael Andres <ma@suse.de>
Wed, 17 Sep 2008 13:10:16 +0000 (13:10 +0000)
committerMichael Andres <ma@suse.de>
Wed, 17 Sep 2008 13:10:16 +0000 (13:10 +0000)
package/libzypp.changes
zypp/target/rpm/RpmDb.cc

index 316dc7f..0d8719a 100644 (file)
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Wed Sep 17 15:08:54 CEST 2008 - ma@suse.de
+
+- Adapt to rpms new way of quoting whitespace in pathnames.(bnc #426924)
+- revision 11082
+
+-------------------------------------------------------------------
 Tue Sep 16 18:41:39 CEST 2008 - ma@suse.de
 
 - Service handling fixes. Added ServiceException. 
index cdb04c4..66d2aa3 100644 (file)
@@ -57,7 +57,11 @@ namespace rpm
 {
 namespace
 {
+#if 1 // No more need to escape whitespace since rpm-4.4.2.3
+const char* quoteInFilename_m = "\'\"";
+#else
 const char* quoteInFilename_m = " \t\'\"";
+#endif
 inline string rpmQuoteFilename( const Pathname & path_r )
 {
   string path( path_r.asString() );