curl: make --no-[option] work properly for several options

--create-dirs, --crlf, --socks5-gssapi-nec and --sasl-ir
This commit is contained in:
Daniel Stenberg 2013-08-14 11:35:42 +02:00
parent 204126a5f1
commit 0b4557f766

View File

@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms * you should have received as part of this distribution. The terms
@ -639,7 +639,7 @@ ParameterError getparameter(char *flag, /* f or -long-flag */
break; break;
case 'r': /* --create-dirs */ case 'r': /* --create-dirs */
config->create_dirs = TRUE; config->create_dirs = toggle;
break; break;
case 's': /* --max-redirs */ case 's': /* --max-redirs */
@ -661,7 +661,7 @@ ParameterError getparameter(char *flag, /* f or -long-flag */
case 'u': /* --crlf */ case 'u': /* --crlf */
/* LF -> CRLF conversion? */ /* LF -> CRLF conversion? */
config->crlf = TRUE; config->crlf = toggle;
break; break;
case 'v': /* --stderr */ case 'v': /* --stderr */
@ -888,7 +888,7 @@ ParameterError getparameter(char *flag, /* f or -long-flag */
GetStr(&config->socks5_gssapi_service, nextarg); GetStr(&config->socks5_gssapi_service, nextarg);
break; break;
case '7': /* --socks5-gssapi-nec*/ case '7': /* --socks5-gssapi-nec*/
config->socks5_gssapi_nec = TRUE; config->socks5_gssapi_nec = toggle;
break; break;
#endif #endif
case '8': /* --proxy1.0 */ case '8': /* --proxy1.0 */
@ -959,7 +959,7 @@ ParameterError getparameter(char *flag, /* f or -long-flag */
break; break;
} }
case 'K': /* --sasl-ir */ case 'K': /* --sasl-ir */
config->sasl_ir = TRUE; config->sasl_ir = toggle;
break; break;
} }
break; break;