aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormilo <milo@r0ot.me>2011-03-11 13:55:46 +0100
committermilo <milo@r0ot.me>2011-03-11 13:55:46 +0100
commitcc2497c6fc4864ed1da0dbad59b9bf7b01a6eb49 (patch)
tree17066352e319a14e8d5e27cd59e00a5b29df5972
parentb8b3a9fe45d1111b4ccc383735a6cf8bcaaf41e6 (diff)
downloadlibssh-x11.tar.gz
libssh-x11.tar.xz
libssh-x11.zip
Use const for x11_auth_* stringsx11
-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 8f70b5f..667f7cc 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;
};