diff options
Diffstat (limited to 'credential.h')
-rw-r--r-- | credential.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/credential.h b/credential.h index 96ea41bd1c..6b0cd16be2 100644 --- a/credential.h +++ b/credential.h @@ -7,6 +7,7 @@ struct credential { struct string_list helpers; unsigned approved:1, configured:1, + quit:1, use_http_path:1; char *username; @@ -26,6 +27,7 @@ void credential_approve(struct credential *); void credential_reject(struct credential *); int credential_read(struct credential *, FILE *); +void credential_write(const struct credential *, FILE *); void credential_from_url(struct credential *, const char *url); int credential_match(const struct credential *have, const struct credential *want); |