=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/auth-bsdauth.c,v retrieving revision 1.1.6.2 retrieving revision 1.1.6.3 diff -u -r1.1.6.2 -r1.1.6.3 --- src/usr.bin/ssh/auth-bsdauth.c 2002/05/17 00:03:23 1.1.6.2 +++ src/usr.bin/ssh/auth-bsdauth.c 2002/06/22 07:23:16 1.1.6.3 @@ -22,7 +22,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: auth-bsdauth.c,v 1.1.6.2 2002/05/17 00:03:23 miod Exp $"); +RCSID("$OpenBSD: auth-bsdauth.c,v 1.1.6.3 2002/06/22 07:23:16 miod Exp $"); #ifdef BSD_AUTH #include "xmalloc.h" @@ -57,7 +57,7 @@ debug3("bsdauth_query: style %s", authctxt->style ? authctxt->style : ""); authctxt->as = auth_userchallenge(authctxt->user, - authctxt->style, "auth-ssh", &challenge); + authctxt->style, "auth-ssh", &challenge); if (authctxt->as == NULL) challenge = NULL; debug2("bsdauth_query: <%s>", challenge ? challenge : "empty"); @@ -66,8 +66,8 @@ if (challenge == NULL) return -1; - *name = xstrdup(""); - *infotxt = xstrdup(""); + *name = xstrdup(""); + *infotxt = xstrdup(""); *numprompts = 1; *prompts = xmalloc(*numprompts * sizeof(char*)); *echo_on = xmalloc(*numprompts * sizeof(u_int));