aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormilo <milo@r0ot.me>2011-03-11 13:55:46 +0100
committermilo <milo@r0ot.me>2011-04-14 13:32:16 +0200
commit17f7c74c225ed64ea2a5a0342437377b2a6aed01 (patch)
treeb5438c8c28af0ab2d245bfc93df44603f3e0050f
parenta3cddd5fad88499255399fb469fee52f1a3e48fc (diff)
downloadlibssh-17f7c74c225ed64ea2a5a0342437377b2a6aed01.tar.gz
libssh-17f7c74c225ed64ea2a5a0342437377b2a6aed01.tar.xz
libssh-17f7c74c225ed64ea2a5a0342437377b2a6aed01.zip
Use const for x11_auth_* stringspki_x11
-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;
};