From 8adae8f2ff3749db4a095a6a55647c3e84779105 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sat, 11 Jan 2003 14:08:46 +0000 Subject: [PATCH] Add a cast for a char * vs unsigned char * conflict. [originally from svn r2541] --- x11fwd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x11fwd.c b/x11fwd.c index 56b6eae2..5ef53d49 100644 --- a/x11fwd.c +++ b/x11fwd.c @@ -401,7 +401,8 @@ int x11_send(Socket s, char *data, int len) PUT_16BIT_MSB_FIRST(realauthdata+12, port); t = time(NULL); PUT_32BIT_MSB_FIRST(realauthdata+14, t); - des_encrypt_xdmauth(pr->auth->realdata+9, realauthdata, 24); + des_encrypt_xdmauth(pr->auth->realdata+9, + (unsigned char *)realauthdata, 24); } /* implement other auth methods here if required */