summaryrefslogtreecommitdiff
path: root/auth2-chall.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-01-22 23:17:30 +1100
committerDamien Miller <djm@mindrot.org>2002-01-22 23:17:30 +1100
commit630d6f4479df4084ef05ce233c11e66c68a98a4f (patch)
tree27dc26ac3fd5bb1131ca39187899dfe2494117c4 /auth2-chall.c
parentdff5099f13e2e679b93d3cfe7073c9cd92b19b06 (diff)
- markus@cvs.openbsd.org 2001/12/28 15:06:00
[auth2.c auth2-chall.c channels.c channels.h clientloop.c dispatch.c dispatch.h kex.c kex.h serverloop.c ssh.c sshconnect2.c] remove plen from the dispatch fn. it's no longer used.
Diffstat (limited to 'auth2-chall.c')
-rw-r--r--auth2-chall.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/auth2-chall.c b/auth2-chall.c
index 4211b0f64..d9268cb50 100644
--- a/auth2-chall.c
+++ b/auth2-chall.c
@@ -23,7 +23,7 @@
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: auth2-chall.c,v 1.12 2001/12/28 12:14:27 markus Exp $"); 26RCSID("$OpenBSD: auth2-chall.c,v 1.13 2001/12/28 15:06:00 markus Exp $");
27 27
28#include "ssh2.h" 28#include "ssh2.h"
29#include "auth.h" 29#include "auth.h"
@@ -35,7 +35,7 @@ RCSID("$OpenBSD: auth2-chall.c,v 1.12 2001/12/28 12:14:27 markus Exp $");
35 35
36static int auth2_challenge_start(Authctxt *); 36static int auth2_challenge_start(Authctxt *);
37static int send_userauth_info_request(Authctxt *); 37static int send_userauth_info_request(Authctxt *);
38static void input_userauth_info_response(int, int, u_int32_t, void *); 38static void input_userauth_info_response(int, u_int32_t, void *);
39 39
40#ifdef BSD_AUTH 40#ifdef BSD_AUTH
41extern KbdintDevice bsdauth_device; 41extern KbdintDevice bsdauth_device;
@@ -234,7 +234,7 @@ send_userauth_info_request(Authctxt *authctxt)
234} 234}
235 235
236static void 236static void
237input_userauth_info_response(int type, int plen, u_int32_t seq, void *ctxt) 237input_userauth_info_response(int type, u_int32_t seq, void *ctxt)
238{ 238{
239 Authctxt *authctxt = ctxt; 239 Authctxt *authctxt = ctxt;
240 KbdintAuthctxt *kbdintctxt; 240 KbdintAuthctxt *kbdintctxt;