diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-26 01:22:54 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-26 01:22:54 +0200 |
commit | 6398a0ef12139ad40a63a6dda82a7847919f8c34 (patch) | |
tree | 52459dbbb23adcef75b5afb404253cf123ae2158 /authfd.c | |
parent | - deraadt@cvs.openbsd.org 2002/06/24 17:57:20 (diff) | |
download | openssh-6398a0ef12139ad40a63a6dda82a7847919f8c34.tar.xz openssh-6398a0ef12139ad40a63a6dda82a7847919f8c34.zip |
- markus@cvs.openbsd.org 2002/06/25 16:22:42
[authfd.c]
unnecessary cast
Diffstat (limited to 'authfd.c')
-rw-r--r-- | authfd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |