[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.227 and 1.228

version 1.227, 2012/06/19 18:25:27 version 1.228, 2012/07/10 02:19:15
Line 271 
Line 271 
                 options->version_addendum = xstrdup("");                  options->version_addendum = xstrdup("");
         /* Turn privilege separation on by default */          /* Turn privilege separation on by default */
         if (use_privsep == -1)          if (use_privsep == -1)
                 use_privsep = PRIVSEP_ON;                  use_privsep = PRIVSEP_NOSANDBOX;
 }  }
   
 /* Keyword tokens. */  /* Keyword tokens. */
Line 731 
Line 731 
         { NULL, -1 }          { NULL, -1 }
 };  };
 static const struct multistate multistate_privsep[] = {  static const struct multistate multistate_privsep[] = {
         { "sandbox",                    PRIVSEP_SANDBOX },          { "yes",                        PRIVSEP_NOSANDBOX },
         { "yes",                        PRIVSEP_ON },          { "sandbox",                    PRIVSEP_ON },
           { "nosandbox",                  PRIVSEP_NOSANDBOX },
         { "no",                         PRIVSEP_OFF },          { "no",                         PRIVSEP_OFF },
         { NULL, -1 }          { NULL, -1 }
 };  };

Legend:
Removed from v.1.227  
changed lines
  Added in v.1.228