changes
authorJan Kupec <jkupec@suse.cz>
Wed, 2 Jan 2008 17:28:28 +0000 (17:28 +0000)
committerJan Kupec <jkupec@suse.cz>
Wed, 2 Jan 2008 17:28:28 +0000 (17:28 +0000)
package/libzypp.changes
zypp/media/MediaISO.cc

index cc33be08bdc1ac5b73060c4f3ab7ddba0f9e0c2a..64af9765ed8a4e98722d14b9ca6aa8af73a547eb 100644 (file)
@@ -1,3 +1,11 @@
+-------------------------------------------------------------------
+Wed Jan  2 18:24:34 CET 2008 - jkupec@suse.cz
+
+- Pathname zypp::filesystem::expandlink(const Pathname &) added
+- if the provided file is a symlink, expand it (#274651) (this
+  probably won't work for schemes other than file/dir and cd/dvd)
+- revision 8179
+
 -------------------------------------------------------------------
 Tue Dec 18 12:28:22 CET 2007 - aschnell@suse.de
 
index de5fdfb53fc8c14543419462f9e127bd77c8f287..e0b98b5a139b32eb0e671246de1a067b7af7b381 100644 (file)
@@ -173,6 +173,8 @@ namespace zypp
        ZYPP_THROW(e3);
       }
 
+      // if the provided file is a symlink, expand it (#274651)
+      // (this will probably work only for file/dir and cd/dvd schemes)
       Pathname isofile = expandlink(manager.localPath(_parentId, _isofile));
       if( isofile.empty() || !PathInfo(isofile).isFile())
       {