#endif /* USE_LIBSSH2 */
#endif /* USE_SSH */
case CURLOPT_PROTOCOLS_STR:
- if(ptr)
- return protocol2num(ptr, &s->allowed_protocols);
- /* make a NULL argument reset to default */
- s->allowed_protocols = (curl_prot_t) CURLPROTO_ALL;
+ if(ptr) {
+ curl_prot_t protos;
+ result = protocol2num(ptr, &protos);
+ if(!result)
+ s->allowed_protocols = protos;
+ }
+ else
+ /* make a NULL argument reset to default */
+ s->allowed_protocols = (curl_prot_t) CURLPROTO_ALL;
break;
case CURLOPT_REDIR_PROTOCOLS_STR:
- if(ptr)
- return protocol2num(ptr, &s->redir_protocols);
- /* make a NULL argument reset to default */
- s->redir_protocols = (curl_prot_t) CURLPROTO_REDIR;
+ if(ptr) {
+ curl_prot_t protos;
+ result = protocol2num(ptr, &protos);
+ if(!result)
+ s->redir_protocols = protos;
+ }
+ else
+ /* make a NULL argument reset to default */
+ s->redir_protocols = (curl_prot_t) CURLPROTO_REDIR;
break;
case CURLOPT_DEFAULT_PROTOCOL: