summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-25 23:22:54 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-25 23:22:54 +0000
commit6398a0ef12139ad40a63a6dda82a7847919f8c34 (patch)
tree52459dbbb23adcef75b5afb404253cf123ae2158
parentc2df3ec0c03f303caadf3f04d9bc72a0783b8030 (diff)
- markus@cvs.openbsd.org 2002/06/25 16:22:42
[authfd.c] unnecessary cast
-rw-r--r--ChangeLog5
-rw-r--r--authfd.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 5cb86103..5f363d9e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -19,6 +19,9 @@
- deraadt@cvs.openbsd.org 2002/06/24 17:57:20
[sftp-server.c sshpty.c]
explicit (u_int) for uid and gid
+ - markus@cvs.openbsd.org 2002/06/25 16:22:42
+ [authfd.c]
+ unnecessary cast
20020625
- (stevesk) [INSTALL acconfig.h configure.ac defines.h] remove --with-rsh
@@ -1118,4 +1121,4 @@
- (stevesk) entropy.c: typo in debug message
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
-$Id: ChangeLog,v 1.2279 2002/06/25 23:21:41 mouring Exp $
+$Id: ChangeLog,v 1.2280 2002/06/25 23:22:54 mouring Exp $
diff --git a/authfd.c b/authfd.c
index a452a792..4c4552d5 100644
--- a/authfd.c
+++ b/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;