]> andersk Git - gssapi-openssh.git/blobdiff - openssh/auth-chall.c
Config file and man page changes for Usage Metrics.
[gssapi-openssh.git] / openssh / auth-chall.c
index 00d6e0ec5a7628a73c6847997f116d1a5d41fda1..45e0c34522b16eb6cb2ad779431d1778b0aec5e3 100644 (file)
@@ -76,33 +76,7 @@ verify_response(Authctxt *authctxt, const char *response)
                return 0;
        resp[0] = (char *)response;
        res = device->respond(authctxt->kbdintctxt, 1, resp);
-       if (res == 1) {
-               /* postponed - send a null query just in case */
-               char *name, *info, **prompts;
-               u_int i, numprompts, *echo_on;
-
-               res = device->query(authctxt->kbdintctxt, &name, &info,
-                   &numprompts, &prompts, &echo_on);
-               if (res == 0) {
-                       for (i = 0; i < numprompts; i++)
-                               xfree(prompts[i]);
-                       xfree(prompts);
-                       xfree(name);
-                       xfree(echo_on);
-                       xfree(info);
-               }
-               /* if we received more prompts, we're screwed */
-               res = (res == 0 && numprompts == 0) ? 0 : -1;
-       }
        device->free_ctx(authctxt->kbdintctxt);
        authctxt->kbdintctxt = NULL;
        return res ? 0 : 1;
 }
-void
-abandon_challenge_response(Authctxt *authctxt)
-{
-       if (authctxt->kbdintctxt != NULL) {
-               device->free_ctx(authctxt->kbdintctxt);
-               authctxt->kbdintctxt = NULL;
-       }
-}
This page took 0.031688 seconds and 4 git commands to generate.