Merge pull request #3155 from mgorny/userpass-const cred_helpers: Add 'const' qualifiers to git_cred_userpass_payload
diff --git a/include/git2/cred_helpers.h b/include/git2/cred_helpers.h
index 1d88092..840c225 100644
--- a/include/git2/cred_helpers.h
+++ b/include/git2/cred_helpers.h
@@ -22,8 +22,8 @@ GIT_BEGIN_DECL
* Payload for git_cred_stock_userpass_plaintext.
*/
typedef struct git_cred_userpass_payload {
- char *username;
- char *password;
+ const char *username;
+ const char *password;
} git_cred_userpass_payload;