[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.138 and 1.139

version 1.138, 2018/07/04 13:49:31 version 1.139, 2018/07/06 09:05:01
Line 728 
Line 728 
                 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.138  
changed lines
  Added in v.1.139