[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.140 and 1.141

version 1.140, 2018/07/06 09:06:14 version 1.141, 2018/07/09 13:37:10
Line 727 
Line 727 
         if (name == NULL)          if (name == NULL)
                 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;
           } else if (strcmp(name, "zlib") == 0) {
                 comp->type = COMP_ZLIB;                  comp->type = COMP_ZLIB;
         } else if (strcmp(name, "none") == 0) {          } else if (strcmp(name, "none") == 0) {
                 comp->type = COMP_NONE;                  comp->type = COMP_NONE;

Legend:
Removed from v.1.140  
changed lines
  Added in v.1.141