summaryrefslogtreecommitdiff
path: root/libfetch/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'libfetch/common.c')
-rw-r--r--libfetch/common.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libfetch/common.c b/libfetch/common.c
index 9cbe32d..537715b 100644
--- a/libfetch/common.c
+++ b/libfetch/common.c
@@ -184,6 +184,8 @@ fetch_default_port(const char *scheme)
return (FTP_DEFAULT_PORT);
if (strcasecmp(scheme, SCHEME_HTTP) == 0)
return (HTTP_DEFAULT_PORT);
+ if (strcasecmp(scheme, SCHEME_HTTPS) == 0)
+ return (HTTPS_DEFAULT_PORT);
return (0);
}