summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/channels.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2006-03-20 18:35:13 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2006-03-20 18:35:13 +0000
commit6a6c661f8b97442a38f44ea3c14bcfa75a011679 (patch)
tree6fd60bbeea61aa451378b09edcfb5f10eb176f9e /usr.bin/ssh/channels.c
parent2622544ce19252062499ac71d05aacb8f10ac7ac (diff)
x11_fake_data is only ever used as u_char *
Diffstat (limited to 'usr.bin/ssh/channels.c')
-rw-r--r--usr.bin/ssh/channels.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c
index ad40eb76cbf..27c2388b119 100644
--- a/usr.bin/ssh/channels.c
+++ b/usr.bin/ssh/channels.c
@@ -128,7 +128,7 @@ static u_int x11_saved_data_len = 0;
* Fake X11 authentication data. This is what the server will be sending us;
* we should replace any occurrences of this by the real data.
*/
-static char *x11_fake_data = NULL;
+static u_char *x11_fake_data = NULL;
static u_int x11_fake_data_len;