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

Diff for /src/usr.bin/ssh/ssh.c between version 1.391 and 1.392

version 1.391, 2013/10/25 23:04:51 version 1.392, 2013/11/07 11:58:27
Line 492 
Line 492 
                 case 'Q':       /* deprecated */                  case 'Q':       /* deprecated */
                         cp = NULL;                          cp = NULL;
                         if (strcasecmp(optarg, "cipher") == 0)                          if (strcasecmp(optarg, "cipher") == 0)
                                 cp = cipher_alg_list();                                  cp = cipher_alg_list('\n');
                         else if (strcasecmp(optarg, "mac") == 0)                          else if (strcasecmp(optarg, "mac") == 0)
                                 cp = mac_alg_list();                                  cp = mac_alg_list('\n');
                         else if (strcasecmp(optarg, "kex") == 0)                          else if (strcasecmp(optarg, "kex") == 0)
                                 cp = kex_alg_list();                                  cp = kex_alg_list('\n');
                         else if (strcasecmp(optarg, "key") == 0)                          else if (strcasecmp(optarg, "key") == 0)
                                 cp = key_alg_list();                                  cp = key_alg_list();
                         if (cp == NULL)                          if (cp == NULL)

Legend:
Removed from v.1.391  
changed lines
  Added in v.1.392