diff options
author | milo <milo@r0ot.me> | 2011-03-11 13:55:46 +0100 |
---|---|---|
committer | milo <milo@r0ot.me> | 2011-04-14 14:05:44 +0200 |
commit | cee8ca339bd8e9f8d73e33d991ccae5bde6ac323 (patch) | |
tree | bad0489a3dd447ce3d16cc652c933073dbf7c53b | |
parent | 7cc4471168550021eec6b7b97dc24c79d4fb366d (diff) | |
download | libssh-cee8ca339bd8e9f8d73e33d991ccae5bde6ac323.tar.gz libssh-cee8ca339bd8e9f8d73e33d991ccae5bde6ac323.tar.xz libssh-cee8ca339bd8e9f8d73e33d991ccae5bde6ac323.zip |
Use const for x11_auth_* strings
-rw-r--r-- | include/libssh/messages.h | 4 |
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; }; |