aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormilo <milo@r0ot.me>2011-03-11 13:55:46 +0100
committermilo <milo@r0ot.me>2011-04-14 14:05:44 +0200
commitcee8ca339bd8e9f8d73e33d991ccae5bde6ac323 (patch)
treebad0489a3dd447ce3d16cc652c933073dbf7c53b /include
parent7cc4471168550021eec6b7b97dc24c79d4fb366d (diff)
downloadlibssh-cee8ca339bd8e9f8d73e33d991ccae5bde6ac323.tar.gz
libssh-cee8ca339bd8e9f8d73e33d991ccae5bde6ac323.tar.xz
libssh-cee8ca339bd8e9f8d73e33d991ccae5bde6ac323.zip
Use const for x11_auth_* strings
Diffstat (limited to 'include')
-rw-r--r--include/libssh/messages.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libssh/messages.h b/include/libssh/messages.h
index 8f70b5fe..667f7cca 100644
--- a/include/libssh/messages.h
+++ b/include/libssh/messages.h
@@ -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;
};