include: Do not make x11 variables const

We allocate them and also free them after the callback has been
executed.

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Andreas Schneider
2015-04-02 16:19:45 +02:00
parent 5236358a48
commit 53586ed4ba

View File

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