=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/auth1.c,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- src/usr.bin/ssh/Attic/auth1.c 2001/12/28 13:57:33 1.33 +++ src/usr.bin/ssh/Attic/auth1.c 2001/12/28 14:50:54 1.34 @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth1.c,v 1.33 2001/12/28 13:57:33 markus Exp $"); +RCSID("$OpenBSD: auth1.c,v 1.34 2001/12/28 14:50:54 markus Exp $"); #include "xmalloc.h" #include "rsa.h" @@ -71,7 +71,6 @@ char *client_user, *password; char info[1024]; u_int dlen; - int plen; u_int ulen; int type = 0; struct passwd *pw = authctxt->pw; @@ -101,7 +100,7 @@ info[0] = '\0'; /* Get a packet from the client. */ - type = packet_read(&plen); + type = packet_read(); /* Process the packet. */ switch (type) { @@ -323,12 +322,11 @@ { Authctxt *authctxt; struct passwd *pw; - int plen; u_int ulen; char *p, *user, *style = NULL; /* Get the name of the user that we wish to log in as. */ - packet_read_expect(&plen, SSH_CMSG_USER); + packet_read_expect(SSH_CMSG_USER); /* Get the user name. */ user = packet_get_string(&ulen);