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

Diff for /src/usr.bin/ssh/readconf.c between version 1.321 and 1.322

version 1.321, 2020/01/23 07:10:22 version 1.322, 2020/01/23 10:24:29
Line 823 
Line 823 
         { "always",                     SSH_CANONICALISE_ALWAYS },          { "always",                     SSH_CANONICALISE_ALWAYS },
         { NULL, -1 }          { NULL, -1 }
 };  };
   static const struct multistate multistate_compression[] = {
   #ifdef WITH_ZLIB
           { "yes",                        COMP_ZLIB },
   #endif
           { "no",                         COMP_NONE },
           { NULL, -1 }
   };
   
 /*  /*
  * Processes a single option line as used in the configuration files. This   * Processes a single option line as used in the configuration files. This
Line 1032 
Line 1039 
   
         case oCompression:          case oCompression:
                 intptr = &options->compression;                  intptr = &options->compression;
                 goto parse_flag;                  multistate_ptr = multistate_compression;
                   goto parse_multistate;
   
         case oTCPKeepAlive:          case oTCPKeepAlive:
                 intptr = &options->tcp_keep_alive;                  intptr = &options->tcp_keep_alive;

Legend:
Removed from v.1.321  
changed lines
  Added in v.1.322