From: Steve Holme Date: Sun, 30 Nov 2014 21:28:22 +0000 (+0000) Subject: curl tool: Exclude SMB from the protocol redirect X-Git-Tag: curl-7_40_0~265 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8996bab1c95e292eff64fa848cf79131a01aeec;p=curl curl tool: Exclude SMB from the protocol redirect As local files could be accessed through \\localhost\c$. --- diff --git a/src/tool_cfgable.c b/src/tool_cfgable.c index bd8707e57..fd62e4b24 100644 --- a/src/tool_cfgable.c +++ b/src/tool_cfgable.c @@ -36,8 +36,9 @@ void config_init(struct OperationConfig* config) config->maxredirs = DEFAULT_MAXREDIRS; config->proto = CURLPROTO_ALL; /* FIXME: better to read from library */ config->proto_present = FALSE; - config->proto_redir = - CURLPROTO_ALL & ~(CURLPROTO_FILE|CURLPROTO_SCP); /* not FILE or SCP */ + config->proto_redir = CURLPROTO_ALL & /* All except FILE, SCP and SMB */ + ~(CURLPROTO_FILE | CURLPROTO_SCP | CURLPROTO_SMB | + CURLPROTO_SMBS); config->proto_redir_present = FALSE; }