diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-09 22:34:20 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-09 22:34:20 +0000 |
commit | 3bcfdf1591316db74b6f33c015d01dc03e860777 (patch) | |
tree | c8530b67bce84f0d59b8ac208d6385cb358ce431 /urpm | |
parent | c6b55b90fcd02916a0bcf4e57529beab2de68f56 (diff) | |
download | urpmi-3bcfdf1591316db74b6f33c015d01dc03e860777.tar urpmi-3bcfdf1591316db74b6f33c015d01dc03e860777.tar.gz urpmi-3bcfdf1591316db74b6f33c015d01dc03e860777.tar.bz2 urpmi-3bcfdf1591316db74b6f33c015d01dc03e860777.tar.xz urpmi-3bcfdf1591316db74b6f33c015d01dc03e860777.zip |
fix namespace (it's really too late to commit more)
Diffstat (limited to 'urpm')
-rw-r--r-- | urpm/install.pm | 2 | ||||
-rw-r--r-- | urpm/select.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/urpm/install.pm b/urpm/install.pm index 807bee57..758fe4da 100644 --- a/urpm/install.pm +++ b/urpm/install.pm @@ -44,7 +44,7 @@ sub build_transaction_set_ { #- build simplest transaction (no split). $urpm->build_transaction_set(undef, $state, split_length => 0); } else { - my $db = db_open_or_die__($urpm, $options{rpmdb}); + my $db = urpm::db_open_or_die__($urpm, $options{rpmdb}); my $sig_handler = sub { undef $db; exit 3 }; local $SIG{INT} = $sig_handler; diff --git a/urpm/select.pm b/urpm/select.pm index ad6adb53..01e20d8f 100644 --- a/urpm/select.pm +++ b/urpm/select.pm @@ -248,7 +248,7 @@ sub resolve_dependencies { require urpm::parallel; #- help perl_checker; urpm::parallel::resolve_dependencies($urpm, $state, $requested, %options); } else { - my $db = db_open_or_die__($urpm, $options{rpmdb}); + my $db = urpm::db_open_or_die__($urpm, $options{rpmdb}); my $sig_handler = sub { undef $db; exit 3 }; local $SIG{INT} = $sig_handler; |