i18n: unpack-trees: avoid substituting only a verb in sentences
[gitweb.git] / credential.h
index e5042723a87543714846961667c3bb49b2c25827..6b0cd16be2b96b23ae5ce14a07a8ad130af8d5bb 100644 (file)
@@ -6,7 +6,9 @@
 struct credential {
        struct string_list helpers;
        unsigned approved:1,
-                configured:1;
+                configured:1,
+                quit:1,
+                use_http_path:1;
 
        char *username;
        char *password;
@@ -25,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);