diff options
Diffstat (limited to 'credential.h')
-rw-r--r-- | credential.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/credential.h b/credential.h index 5f9e6ff2ef..63fef3e2ea 100644 --- a/credential.h +++ b/credential.h @@ -168,7 +168,9 @@ struct credential { multistage: 1, quit:1, use_http_path:1, - username_from_proto:1; + username_from_proto:1, + sanitize_prompt:1, + protect_protocol:1; struct credential_capability capa_authtype; struct credential_capability capa_state; @@ -195,6 +197,8 @@ struct credential { .wwwauth_headers = STRVEC_INIT, \ .state_headers = STRVEC_INIT, \ .state_headers_to_send = STRVEC_INIT, \ + .sanitize_prompt = 1, \ + .protect_protocol = 1, \ } /* Initialize a credential structure, setting all fields to empty. */ |