[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.392 and 1.393

version 1.392, 2013/11/07 11:58:27 version 1.393, 2013/11/21 00:45:44
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('\n');                                  cp = cipher_alg_list('\n', 0);
                           else if (strcasecmp(optarg, "cipher-auth") == 0)
                                   cp = cipher_alg_list('\n', 1);
                         else if (strcasecmp(optarg, "mac") == 0)                          else if (strcasecmp(optarg, "mac") == 0)
                                 cp = mac_alg_list('\n');                                  cp = mac_alg_list('\n');
                         else if (strcasecmp(optarg, "kex") == 0)                          else if (strcasecmp(optarg, "kex") == 0)

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