[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.358 and 1.359

version 1.358, 2020/01/23 02:46:49 version 1.359, 2020/01/23 10:24:29
Line 363 
Line 363 
                 options->permit_user_env_whitelist = NULL;                  options->permit_user_env_whitelist = NULL;
         }          }
         if (options->compression == -1)          if (options->compression == -1)
   #ifdef WITH_ZLIB
                 options->compression = COMP_DELAYED;                  options->compression = COMP_DELAYED;
   #else
                   options->compression = COMP_NONE;
   #endif
   
         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 1156 
Line 1161 
         { NULL, -1 }          { NULL, -1 }
 };  };
 static const struct multistate multistate_compression[] = {  static const struct multistate multistate_compression[] = {
   #ifdef WITH_ZLIB
         { "yes",                        COMP_DELAYED },          { "yes",                        COMP_DELAYED },
         { "delayed",                    COMP_DELAYED },          { "delayed",                    COMP_DELAYED },
   #endif
         { "no",                         COMP_NONE },          { "no",                         COMP_NONE },
         { NULL, -1 }          { NULL, -1 }
 };  };

Legend:
Removed from v.1.358  
changed lines
  Added in v.1.359