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

Diff for /src/usr.bin/ssh/servconf.c between version 1.336 and 1.337

version 1.336, 2018/07/06 09:06:14 version 1.337, 2018/07/09 13:37:10
Line 328 
Line 328 
                 options->permit_user_env_whitelist = NULL;                  options->permit_user_env_whitelist = NULL;
         }          }
         if (options->compression == -1)          if (options->compression == -1)
                 options->compression = COMP_ZLIB;                  options->compression = COMP_DELAYED;
         if (options->rekey_limit == -1)          if (options->rekey_limit == -1)
                 options->rekey_limit = 0;                  options->rekey_limit = 0;
         if (options->rekey_interval == -1)          if (options->rekey_interval == -1)
Line 1113 
Line 1113 
         { NULL, -1 }          { NULL, -1 }
 };  };
 static const struct multistate multistate_compression[] = {  static const struct multistate multistate_compression[] = {
         { "yes",                        COMP_ZLIB },          { "yes",                        COMP_DELAYED },
         { "delayed",                    COMP_ZLIB },          { "delayed",                    COMP_DELAYED },
         { "no",                         COMP_NONE },          { "no",                         COMP_NONE },
         { NULL, -1 }          { NULL, -1 }
 };  };

Legend:
Removed from v.1.336  
changed lines
  Added in v.1.337