Re-enabled the read-only lock for service-list (#302152).
authorMartin Vidner <mvidner@suse.cz>
Thu, 23 Aug 2007 08:22:27 +0000 (08:22 +0000)
committerMartin Vidner <mvidner@suse.cz>
Thu, 23 Aug 2007 08:22:27 +0000 (08:22 +0000)
VERSION.cmake
package/zypper.changes
src/zypper-updates.cc
src/zypper.cc

index 7a1eb3c..e5c8cc7 100644 (file)
@@ -20,4 +20,4 @@
 
 SET(VERSION_MAJOR "0")
 SET(VERSION_MINOR "8")
-SET(VERSION_PATCH "15")
+SET(VERSION_PATCH "16")
index 2d0efef..223d827 100644 (file)
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Thu Aug 23 10:22:14 CEST 2007 - mvidner@suse.cz
+
+- Re-enabled the read-only lock for service-list (#302152).
+- 0.8.16
+
+-------------------------------------------------------------------
 Tue Aug 21 15:07:29 CEST 2007 - duncan@suse.de
 
 - fix invalid capability creation (#301690)
index 2764a7f..a24dc2d 100644 (file)
@@ -11,7 +11,6 @@
 #include <zypp/Locale.h>
 #include <zypp/ZYpp.h>
 #include <zypp/ZYppFactory.h>
-#include <zypp/zypp_detail/ZYppReadOnlyHack.h>
 #include <zypp/RepoManager.h>
 #include <zypp/base/Logger.h>
 #include <zypp/Digest.h>
index 25da576..dfdd016 100644 (file)
@@ -22,6 +22,7 @@
 
 #include <zypp/base/Logger.h>
 #include <zypp/repo/RepoException.h>
+#include <zypp/zypp_detail/ZYppReadOnlyHack.h>
 
 #include "zypper.h"
 #include "zypper-sources.h"
@@ -719,8 +720,8 @@ int one_command(int argc, char **argv)
 
   // here come commands that need the lock
   try {
-//    if (command == ZypperCommand::LIST_REPOS)
-//      zypp_readonly_hack::IWantIt (); // #247001
+    if (command == ZypperCommand::LIST_REPOS)
+      zypp_readonly_hack::IWantIt (); // #247001, #302152
 
     God = zypp::getZYpp();
   }