You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--- files.c.orig |
|
+++ files.c |
|
@@ -93,6 +93,7 @@ |
|
inline int is_url (const char *str) |
|
{ |
|
return !strncasecmp (str, "http://", sizeof ("http://") - 1) |
|
+ || !strncasecmp (str, "https://", sizeof ("https://") - 1) |
|
|| !strncasecmp (str, "ftp://", sizeof ("ftp://") - 1); |
|
}
|
|
|