[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.10 and 1.11

version 1.10, 1999/10/07 21:45:02 version 1.11, 1999/10/07 22:46:32
Line 34 
Line 34 
   options->quiet_mode = -1;    options->quiet_mode = -1;
   options->fascist_logging = -1;    options->fascist_logging = -1;
   options->print_motd = -1;    options->print_motd = -1;
     options->check_mail = -1;
   options->x11_forwarding = -1;    options->x11_forwarding = -1;
   options->x11_display_offset = -1;    options->x11_display_offset = -1;
   options->strict_modes = -1;    options->strict_modes = -1;
Line 87 
Line 88 
     options->ignore_rhosts = 0;      options->ignore_rhosts = 0;
   if (options->quiet_mode == -1)    if (options->quiet_mode == -1)
     options->quiet_mode = 0;      options->quiet_mode = 0;
     if (options->check_mail == -1)
       options->check_mail = 0;
   if (options->fascist_logging == -1)    if (options->fascist_logging == -1)
     options->fascist_logging = 1;      options->fascist_logging = 1;
   if (options->print_motd == -1)    if (options->print_motd == -1)
Line 150 
Line 153 
 #endif  #endif
   sPasswordAuthentication, sAllowHosts, sDenyHosts, sListenAddress,    sPasswordAuthentication, sAllowHosts, sDenyHosts, sListenAddress,
   sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset,    sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset,
   sStrictModes, sEmptyPasswd, sRandomSeedFile, sKeepAlives    sStrictModes, sEmptyPasswd, sRandomSeedFile, sKeepAlives, sCheckMail
 } ServerOpCodes;  } ServerOpCodes;
   
 /* Textual representation of the tokens. */  /* Textual representation of the tokens. */
Line 186 
Line 189 
   { "skeyauthentication", sSkeyAuthentication },    { "skeyauthentication", sSkeyAuthentication },
 #endif  #endif
   { "allowhosts", sAllowHosts },    { "allowhosts", sAllowHosts },
     { "checkmail", sCheckMail },
   { "denyhosts", sDenyHosts },    { "denyhosts", sDenyHosts },
   { "listenaddress", sListenAddress },    { "listenaddress", sListenAddress },
   { "printmotd", sPrintMotd },    { "printmotd", sPrintMotd },
Line 404 
Line 408 
         case sPasswordAuthentication:          case sPasswordAuthentication:
           intptr = &options->password_authentication;            intptr = &options->password_authentication;
           goto parse_flag;            goto parse_flag;
   
           case sCheckMail:
             intptr = &options->check_mail;
             goto parse_flag;
   
 #ifdef SKEY  #ifdef SKEY
         case sSkeyAuthentication:          case sSkeyAuthentication:

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11