diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-25 23:22:54 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-25 23:22:54 +0000 |
commit | 6398a0ef12139ad40a63a6dda82a7847919f8c34 (patch) | |
tree | 52459dbbb23adcef75b5afb404253cf123ae2158 | |
parent | c2df3ec0c03f303caadf3f04d9bc72a0783b8030 (diff) |
- markus@cvs.openbsd.org 2002/06/25 16:22:42
[authfd.c]
unnecessary cast
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | authfd.c | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -19,6 +19,9 @@ | |||
19 | - deraadt@cvs.openbsd.org 2002/06/24 17:57:20 | 19 | - deraadt@cvs.openbsd.org 2002/06/24 17:57:20 |
20 | [sftp-server.c sshpty.c] | 20 | [sftp-server.c sshpty.c] |
21 | explicit (u_int) for uid and gid | 21 | explicit (u_int) for uid and gid |
22 | - markus@cvs.openbsd.org 2002/06/25 16:22:42 | ||
23 | [authfd.c] | ||
24 | unnecessary cast | ||
22 | 25 | ||
23 | 20020625 | 26 | 20020625 |
24 | - (stevesk) [INSTALL acconfig.h configure.ac defines.h] remove --with-rsh | 27 | - (stevesk) [INSTALL acconfig.h configure.ac defines.h] remove --with-rsh |
@@ -1118,4 +1121,4 @@ | |||
1118 | - (stevesk) entropy.c: typo in debug message | 1121 | - (stevesk) entropy.c: typo in debug message |
1119 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ | 1122 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ |
1120 | 1123 | ||
1121 | $Id: ChangeLog,v 1.2279 2002/06/25 23:21:41 mouring Exp $ | 1124 | $Id: ChangeLog,v 1.2280 2002/06/25 23:22:54 mouring Exp $ |
@@ -35,7 +35,7 @@ | |||
35 | */ | 35 | */ |
36 | 36 | ||
37 | #include "includes.h" | 37 | #include "includes.h" |
38 | RCSID("$OpenBSD: authfd.c,v 1.55 2002/06/19 00:27:55 deraadt Exp $"); | 38 | RCSID("$OpenBSD: authfd.c,v 1.56 2002/06/25 16:22:42 markus Exp $"); |
39 | 39 | ||
40 | #include <openssl/evp.h> | 40 | #include <openssl/evp.h> |
41 | 41 | ||
@@ -144,7 +144,7 @@ ssh_request_reply(AuthenticationConnection *auth, Buffer *request, Buffer *reply | |||
144 | error("Error reading response from authentication socket."); | 144 | error("Error reading response from authentication socket."); |
145 | return 0; | 145 | return 0; |
146 | } | 146 | } |
147 | buffer_append(reply, (char *) buf, l); | 147 | buffer_append(reply, buf, l); |
148 | len -= l; | 148 | len -= l; |
149 | } | 149 | } |
150 | return 1; | 150 | return 1; |