1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-27 13:21:11 +03:00

Use const for x11_auth_* strings

This commit is contained in:
milo
2011-03-11 13:55:46 +01:00
parent 7cc4471168
commit cee8ca339b

View File

@@ -77,8 +77,8 @@ struct ssh_channel_request {
/* X11 */
uint8_t x11_single_connection;
char *x11_auth_protocol;
char *x11_auth_cookie;
const char *x11_auth_protocol;
const char *x11_auth_cookie;
uint32_t x11_screen_number;
};