diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-03-03 22:43:54 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-03-03 22:43:54 +0000 |
commit | 87ccf7438dc42b7f611ecabfaf36ddfe29e345da (patch) | |
tree | 470fbd35a978961372526ce3b316b1d8fdc8c45a /urpm/cdrom.pm | |
parent | a9718a22dc2d10c7d567d01907427136cc443951 (diff) | |
download | urpmi-87ccf7438dc42b7f611ecabfaf36ddfe29e345da.tar urpmi-87ccf7438dc42b7f611ecabfaf36ddfe29e345da.tar.gz urpmi-87ccf7438dc42b7f611ecabfaf36ddfe29e345da.tar.bz2 urpmi-87ccf7438dc42b7f611ecabfaf36ddfe29e345da.tar.xz urpmi-87ccf7438dc42b7f611ecabfaf36ddfe29e345da.zip |
correctly name function since it's outside of its module
Diffstat (limited to 'urpm/cdrom.pm')
-rw-r--r-- | urpm/cdrom.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/cdrom.pm b/urpm/cdrom.pm index 117a12d4..a2b2e7c8 100644 --- a/urpm/cdrom.pm +++ b/urpm/cdrom.pm @@ -21,7 +21,7 @@ sub _find_blist_url_matching { # set it, then verify $blist->{medium}{mntpoint} = $mntpoint; - if (-r urpm::removable::_file_or_synthesis_dir($blist->{medium}, $blist->{url})) { + if (-r urpm::removable::file_or_synthesis_dir($blist->{medium}, $blist->{url})) { $urpm->{log}("found cdrom $blist->{medium}{name} mounted in $mntpoint"); push @l, $blist; } else { |