diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-11-24 13:11:24 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-11-24 13:11:24 +0000 |
commit | ffec7627deb30ef51e5178347be8bb009a38bfeb (patch) | |
tree | f0223823aa300bdef1176ed66e6c3321ac44bbf7 | |
parent | eb6948f1e08fb8c9b17ba53dc138a1a8d382e0a3 (diff) | |
download | rpmdrake-ffec7627deb30ef51e5178347be8bb009a38bfeb.tar rpmdrake-ffec7627deb30ef51e5178347be8bb009a38bfeb.tar.gz rpmdrake-ffec7627deb30ef51e5178347be8bb009a38bfeb.tar.bz2 rpmdrake-ffec7627deb30ef51e5178347be8bb009a38bfeb.tar.xz rpmdrake-ffec7627deb30ef51e5178347be8bb009a38bfeb.zip |
(get_medium_type) fix displaying type of altered mirrorlist media (#44930)
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | Rpmdrake/edit_urpm_sources.pm | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +- edit-urpm-sources: + o fix displaying type of altered mirrorlist media (#44930) + Version 5.0.3 - 21 October 2008, Thierry Vignaud - fix displaying big list of conflicting packages diff --git a/Rpmdrake/edit_urpm_sources.pm b/Rpmdrake/edit_urpm_sources.pm index 8789883e..ecb3d2b1 100644 --- a/Rpmdrake/edit_urpm_sources.pm +++ b/Rpmdrake/edit_urpm_sources.pm @@ -69,8 +69,8 @@ sub get_medium_type { rsync => N("rsync"), ssh => N("NFS"), ); - return $medium_type{$1} if $medium->{url} =~ m!^([^:]*)://!; return N("Mirror list") if $medium->{mirrorlist}; + return $medium_type{$1} if $medium->{url} =~ m!^([^:]*)://!; return N("Local"); } |