summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/fs/wild_device.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index a0f702bf3..4a693ac90 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,5 +1,6 @@
- diskdrake
o --dav: handle davfs2 credentials in /etc/davfs2/secrets (#44190)
+ o --dav: handle https
Version 11.70 - 16 October 2008
diff --git a/perl-install/fs/wild_device.pm b/perl-install/fs/wild_device.pm
index 0bedbabad..10185bf20 100644
--- a/perl-install/fs/wild_device.pm
+++ b/perl-install/fs/wild_device.pm
@@ -23,7 +23,7 @@ sub analyze {
'nfs';
} elsif ($dev =~ m!^//\w!) {
'smb';
- } elsif ($dev =~ m!^http://!) {
+ } elsif ($dev =~ m!^https?://!) {
'dav';
}
}