deprecated
authorDuncan Mac-Vicar P <dmacvicar@suse.de>
Thu, 22 May 2008 00:24:47 +0000 (00:24 +0000)
committerDuncan Mac-Vicar P <dmacvicar@suse.de>
Thu, 22 May 2008 00:24:47 +0000 (00:24 +0000)
zypp/Repository.cc
zypp/repo/PackageDelta.cc
zypp/zypp_detail/ZYppImpl.cc

index 4a6b022..088ed70 100644 (file)
@@ -47,7 +47,7 @@ namespace zypp
     bool Repository::isSystemRepo() const
     {
        NO_REPOSITORY_RETURN( false );
-       return( sat::Pool::systemRepoName() == _repo->name );
+       return( sat::Pool::systemRepoAlias() == _repo->name );
     }
 
     std::string Repository::alias() const
index b0cb2cf..cb7cf8a 100644 (file)
@@ -45,7 +45,7 @@ namespace zypp
     DeltaRpm::DeltaRpm(const Repository & repo, sat::detail::IdType extraid)
       : _repo(repo)
     {
-      MIL << "creating deltarpm from repo " << repo.name() << ", id " << extraid << endl;
+      MIL << "creating deltarpm from repo " << repo.alias() << ", id " << extraid << endl;
       ::Dataiterator di;
       ::dataiterator_init(&di, repo.get(), extraid, 0, 0, SEARCH_EXTRA | SEARCH_NO_STORAGE_SOLVABLE);
 
index d8231ff..dace8ee 100644 (file)
@@ -137,14 +137,14 @@ namespace zypp
 
       if (! policy_r.dryRun() ) {
 
-          DBG << "unloading " << sat::Pool::instance().systemRepoName() << " repo from pool" << endl;
+          DBG << "unloading " << sat::Pool::instance().systemRepoAlias() << " repo from pool" << endl;
 
         _target->unload();
 
         if ( policy_r.syncPoolAfterCommit() )
           {
             // reload new status from target
-            DBG << "reloading " << sat::Pool::instance().systemRepoName() << " repo to pool" << endl;
+            DBG << "reloading " << sat::Pool::instance().systemRepoAlias() << " repo to pool" << endl;
             _target->load();
           }
       }