* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * 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
* you should have received as part of this distribution. The terms
break;
case 'r': /* --create-dirs */
- config->create_dirs = TRUE;
+ config->create_dirs = toggle;
break;
case 's': /* --max-redirs */
case 'u': /* --crlf */
/* LF -> CRLF conversion? */
- config->crlf = TRUE;
+ config->crlf = toggle;
break;
case 'v': /* --stderr */
GetStr(&config->socks5_gssapi_service, nextarg);
break;
case '7': /* --socks5-gssapi-nec*/
- config->socks5_gssapi_nec = TRUE;
+ config->socks5_gssapi_nec = toggle;
break;
#endif
case '8': /* --proxy1.0 */
break;
}
case 'K': /* --sasl-ir */
- config->sasl_ir = TRUE;
+ config->sasl_ir = toggle;
break;
}
break;