[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.174 and 1.175

version 1.174, 2007/12/31 10:41:31 version 1.175, 2008/01/01 09:27:33
Line 288 
Line 288 
         { "serverkeybits", sServerKeyBits, SSHCFG_GLOBAL },          { "serverkeybits", sServerKeyBits, SSHCFG_GLOBAL },
         { "logingracetime", sLoginGraceTime, SSHCFG_GLOBAL },          { "logingracetime", sLoginGraceTime, SSHCFG_GLOBAL },
         { "keyregenerationinterval", sKeyRegenerationTime, SSHCFG_GLOBAL },          { "keyregenerationinterval", sKeyRegenerationTime, SSHCFG_GLOBAL },
         { "permitrootlogin", sPermitRootLogin, SSHCFG_GLOBAL },          { "permitrootlogin", sPermitRootLogin, SSHCFG_ALL },
         { "syslogfacility", sLogFacility, SSHCFG_GLOBAL },          { "syslogfacility", sLogFacility, SSHCFG_GLOBAL },
         { "loglevel", sLogLevel, SSHCFG_GLOBAL },          { "loglevel", sLogLevel, SSHCFG_GLOBAL },
         { "rhostsauthentication", sDeprecated, SSHCFG_GLOBAL },          { "rhostsauthentication", sDeprecated, SSHCFG_GLOBAL },
Line 763 
Line 763 
                         fatal("%s line %d: Bad yes/"                          fatal("%s line %d: Bad yes/"
                             "without-password/forced-commands-only/no "                              "without-password/forced-commands-only/no "
                             "argument: %s", filename, linenum, arg);                              "argument: %s", filename, linenum, arg);
                 if (*intptr == -1)                  if (*activep && *intptr == -1)
                         *intptr = value;                          *intptr = value;
                 break;                  break;
   
Line 1308 
Line 1308 
         M_CP_INTOPT(kerberos_authentication);          M_CP_INTOPT(kerberos_authentication);
         M_CP_INTOPT(hostbased_authentication);          M_CP_INTOPT(hostbased_authentication);
         M_CP_INTOPT(kbd_interactive_authentication);          M_CP_INTOPT(kbd_interactive_authentication);
           M_CP_INTOPT(permit_root_login);
   
         M_CP_INTOPT(allow_tcp_forwarding);          M_CP_INTOPT(allow_tcp_forwarding);
         M_CP_INTOPT(gateway_ports);          M_CP_INTOPT(gateway_ports);

Legend:
Removed from v.1.174  
changed lines
  Added in v.1.175