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

Diff for /src/usr.bin/ssh/readconf.c between version 1.28 and 1.29

version 1.28, 2000/04/26 22:43:14 version 1.29, 2000/05/02 22:18:04
Line 745 
Line 745 
                 sprintf(options->identity_files[0], "~/%.100s", SSH_CLIENT_IDENTITY);                  sprintf(options->identity_files[0], "~/%.100s", SSH_CLIENT_IDENTITY);
                 options->num_identity_files = 1;                  options->num_identity_files = 1;
         }          }
 #if 0  
         if (options->num_identity_files2 == 0) {          if (options->num_identity_files2 == 0) {
                 options->identity_files2[0] =                  options->identity_files2[0] =
                         xmalloc(2 + strlen(SSH2_CLIENT_IDENTITY) + 1);                          xmalloc(2 + strlen(SSH_CLIENT_ID_DSA) + 1);
                 sprintf(options->identity_files2[0], "~/%.100s", SSH2_CLIENT_IDENTITY);                  sprintf(options->identity_files2[0], "~/%.100s", SSH_CLIENT_ID_DSA);
                 options->num_identity_files2 = 1;                  options->num_identity_files2 = 1;
         }          }
 #endif  
         if (options->escape_char == -1)          if (options->escape_char == -1)
                 options->escape_char = '~';                  options->escape_char = '~';
         if (options->system_hostfile == NULL)          if (options->system_hostfile == NULL)

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29