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

Diff for /src/usr.bin/ssh/kex.c between version 1.125 and 1.126

version 1.125, 2016/09/28 20:32:42 version 1.126, 2016/09/28 21:44:52
Line 662 
Line 662 
                 return SSH_ERR_NO_COMPRESS_ALG_MATCH;                  return SSH_ERR_NO_COMPRESS_ALG_MATCH;
         if (strcmp(name, "zlib@openssh.com") == 0) {          if (strcmp(name, "zlib@openssh.com") == 0) {
                 comp->type = COMP_DELAYED;                  comp->type = COMP_DELAYED;
           } else if (strcmp(name, "zlib") == 0) {
                   comp->type = COMP_ZLIB;
         } else if (strcmp(name, "none") == 0) {          } else if (strcmp(name, "none") == 0) {
                 comp->type = COMP_NONE;                  comp->type = COMP_NONE;
         } else {          } else {

Legend:
Removed from v.1.125  
changed lines
  Added in v.1.126