From f28e6b7c8e6113bdc2e1e2b956d088b9c92c67dd Mon Sep 17 00:00:00 2001 From: ben Date: Sun, 5 Jan 2003 14:20:49 +0000 Subject: [PATCH] char * vs unsigned char * (by explicit cast). git-svn-id: svn://svn.tartarus.org/sgt/putty@2467 cda61777-01e9-0310-a592-d414129be87e --- x11fwd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x11fwd.c b/x11fwd.c index 4b043fa4..decb2596 100644 --- a/x11fwd.c +++ b/x11fwd.c @@ -299,7 +299,7 @@ int x11_send(Socket s, char *data, int len) pr->auth_dsize = (pr->auth_dlen + 3) & ~3; /* Leave room for a terminating zero, to make our lives easier. */ pr->auth_protocol = (char *) smalloc(pr->auth_psize + 1); - pr->auth_data = (char *) smalloc(pr->auth_dsize); + pr->auth_data = (unsigned char *) smalloc(pr->auth_dsize); } /* @@ -338,7 +338,7 @@ int x11_send(Socket s, char *data, int len) PUT_16BIT(pr->firstpkt[0], reply + 6, msgsize >> 2);/* data len */ memset(reply + 8, 0, msgsize); memcpy(reply + 8, message, msglen); - sshfwd_write(pr->c, reply, 8 + msgsize); + sshfwd_write(pr->c, (char *)reply, 8 + msgsize); sshfwd_close(pr->c); x11_close(s); return 0; @@ -351,7 +351,7 @@ int x11_send(Socket s, char *data, int len) */ PUT_16BIT(pr->firstpkt[0], pr->firstpkt + 6, 0); /* auth proto */ PUT_16BIT(pr->firstpkt[0], pr->firstpkt + 8, 0); /* auth data */ - sk_write(s, pr->firstpkt, 12); + sk_write(s, (char *)pr->firstpkt, 12); pr->verified = 1; } -- 2.11.0