=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/auth2-chall.c,v retrieving revision 1.17.2.1 retrieving revision 1.17.2.2 diff -u -r1.17.2.1 -r1.17.2.2 --- src/usr.bin/ssh/auth2-chall.c 2002/06/26 15:30:37 1.17.2.1 +++ src/usr.bin/ssh/auth2-chall.c 2002/10/11 14:51:52 1.17.2.2 @@ -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.17.2.1 2002/06/26 15:30:37 jason Exp $"); +RCSID("$OpenBSD: auth2-chall.c,v 1.17.2.2 2002/10/11 14:51:52 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); }