This is the mail archive of the cygwin-apps mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH setup] Accept sites using https:// and ftps:// protocols in mirrors.lst


Also report when a line from mirrors.lst is being discarded due to a URL
using an unknown protocol.

Signed-off-by: Jon Turney <jon.turney@dronecode.org.uk>
---
 site.cc | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/site.cc b/site.cc
index b05657b..c33da36 100644
--- a/site.cc
+++ b/site.cc
@@ -264,7 +264,9 @@ load_site_list (SiteList& theSites, char *theString)
         continue;
       /* Accept only the URL schemes we can understand. */
       if (strncmp(bol, "http://";, 7) == 0 ||
-	  strncmp(bol, "ftp://";, 6) == 0)
+          strncmp(bol, "https://";, 8) == 0 ||
+          strncmp(bol, "ftp://";, 6) == 0 ||
+          strncmp(bol, "ftps://", 7) == 0)
 	{
 	  char *semi = strchr (bol, ';');
 	  char *semi2 = NULL;
@@ -306,6 +308,10 @@ load_site_list (SiteList& theSites, char *theString)
 	    //TODO: remove and remerge 
 	    *i = newsite;
 	}
+        else
+        {
+          Log (LOG_BABBLE) << "Discarding line '" << bol << "' due to unknown protocol" << endLog;
+        }
     }
 }
 
-- 
2.12.3


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]