diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-06-25 16:22:43 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-06-25 16:22:43 +0000 |
commit | 435aa1b690e1075e41e4fc1683d1cf59efde8421 (patch) | |
tree | 03fd59ee78dbd92c2a97827f75a63256babdfb83 /usr.bin | |
parent | aa0c6a98fa2a5fecc7aa639b58ac6147f705b9c5 (diff) |
unnecessary cast
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/authfd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/authfd.c b/usr.bin/ssh/authfd.c index a452a792ee6..4c4552d527f 100644 --- a/usr.bin/ssh/authfd.c +++ b/usr.bin/ssh/authfd.c @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: authfd.c,v 1.55 2002/06/19 00:27:55 deraadt Exp $"); +RCSID("$OpenBSD: authfd.c,v 1.56 2002/06/25 16:22:42 markus Exp $"); #include <openssl/evp.h> @@ -144,7 +144,7 @@ ssh_request_reply(AuthenticationConnection *auth, Buffer *request, Buffer *reply error("Error reading response from authentication socket."); return 0; } - buffer_append(reply, (char *) buf, l); + buffer_append(reply, buf, l); len -= l; } return 1; |