[BACK]Return to auth-chall.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/auth-chall.c between version 1.12 and 1.13

version 1.12, 2006/08/03 03:34:41 version 1.13, 2013/05/17 00:13:13
Line 58 
Line 58 
                 fatal("get_challenge: numprompts < 1");                  fatal("get_challenge: numprompts < 1");
         challenge = xstrdup(prompts[0]);          challenge = xstrdup(prompts[0]);
         for (i = 0; i < numprompts; i++)          for (i = 0; i < numprompts; i++)
                 xfree(prompts[i]);                  free(prompts[i]);
         xfree(prompts);          free(prompts);
         xfree(name);          free(name);
         xfree(echo_on);          free(echo_on);
         xfree(info);          free(info);
   
         return (challenge);          return (challenge);
 }  }

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13