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

Diff for /src/usr.bin/ssh/ssh-keygen.c between version 1.22 and 1.23

version 1.22, 2000/05/01 08:20:56 version 1.23, 2000/05/02 22:18:04
Line 72 
Line 72 
 {  {
         char buf[1024];          char buf[1024];
         snprintf(identity_file, sizeof(identity_file), "%s/%s",          snprintf(identity_file, sizeof(identity_file), "%s/%s",
                  pw->pw_dir, SSH_CLIENT_IDENTITY);              pw->pw_dir,
               dsa_mode ? SSH_CLIENT_ID_DSA: SSH_CLIENT_IDENTITY);
         printf("%s (%s): ", prompt, identity_file);          printf("%s (%s): ", prompt, identity_file);
         fflush(stdout);          fflush(stdout);
         if (fgets(buf, sizeof(buf), stdin) == NULL)          if (fgets(buf, sizeof(buf), stdin) == NULL)

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23