=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/auth2-chall.c,v retrieving revision 1.8.2.4 retrieving revision 1.8.2.5 diff -u -r1.8.2.4 -r1.8.2.5 --- src/usr.bin/ssh/auth2-chall.c 2002/06/26 18:22:34 1.8.2.4 +++ src/usr.bin/ssh/auth2-chall.c 2002/10/11 14:53:06 1.8.2.5 @@ -23,7 +23,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: auth2-chall.c,v 1.8.2.4 2002/06/26 18:22:34 miod Exp $"); +RCSID("$OpenBSD: auth2-chall.c,v 1.8.2.5 2002/10/11 14:53:06 miod Exp $"); #include "ssh2.h" #include "auth.h" @@ -263,7 +263,7 @@ if (nresp > 100) fatal("input_userauth_info_response: too many replies"); if (nresp > 0) { - response = xmalloc(nresp * sizeof(char*)); + response = xmalloc(nresp * sizeof(char *)); for (i = 0; i < nresp; i++) response[i] = packet_get_string(NULL); }