mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-03 20:02:04 +00:00
Merge pull request #3155 from mgorny/userpass-const
cred_helpers: Add 'const' qualifiers to git_cred_userpass_payload
This commit is contained in:
commit
2deb36081c
@ -22,8 +22,8 @@ GIT_BEGIN_DECL
|
|||||||
* Payload for git_cred_stock_userpass_plaintext.
|
* Payload for git_cred_stock_userpass_plaintext.
|
||||||
*/
|
*/
|
||||||
typedef struct git_cred_userpass_payload {
|
typedef struct git_cred_userpass_payload {
|
||||||
char *username;
|
const char *username;
|
||||||
char *password;
|
const char *password;
|
||||||
} git_cred_userpass_payload;
|
} git_cred_userpass_payload;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user