Author: pebender
Date: Sun Nov 2 12:52:16 2008
New Revision: 3899
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums
trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
Log:
- Fixed bug in MiniMyth::url_mount that caused mount options contained in
the URL's query part to be ignored.
Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt Sun Nov 2
12:52:16 2008
@@ -25,6 +25,10 @@
xorg-7.4/libdrm.
xorg-7.4/xf86-video-intel.
+Fixed bugs
+ - Fixed bug in MiniMyth::url_mount that caused mount options contained
in
+ the URL's query part to be ignored.
+
--------------------------------------------------------------------------------
Changes since 58 (2008-10-31):
Modified: trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums
==============================================================================
--- trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums (original)
+++ trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums Sun Nov 2
12:52:16 2008
@@ -1 +1 @@
-ea82632c2e311ed2518369b09f779733 download/MiniMyth.pm
+3bb9f26e120dc9320e246c2f3f9b98c9 download/MiniMyth.pm
Modified: trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
==============================================================================
--- trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
(original)
+++ trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm Sun Nov
2 12:52:16 2008
@@ -1637,7 +1637,7 @@
my $url_password = $url_parsed->{'password'};
my $url_server = $url_parsed->{'server'};
my $url_path = $url_parsed->{'path'};
- my $url_options = $url_parsed->{'options'};
+ my $url_options = $url_parsed->{'query'};
my $url_file = File::Basename::basename($url_path);
my $url_ext = $url_file;
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---