[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.22 and 1.23

version 1.22, 1999/11/11 23:26:53 version 1.23, 1999/11/19 16:04:17
Line 214 
Line 214 
   { NULL, 0 }    { NULL, 0 }
 };  };
   
 static struct  
 {  
   const char *name;  
   SyslogFacility facility;  
 } log_facilities[] =  
 {  
   { "DAEMON", SYSLOG_FACILITY_DAEMON },  
   { "USER", SYSLOG_FACILITY_USER },  
   { "AUTH", SYSLOG_FACILITY_AUTH },  
   { "LOCAL0", SYSLOG_FACILITY_LOCAL0 },  
   { "LOCAL1", SYSLOG_FACILITY_LOCAL1 },  
   { "LOCAL2", SYSLOG_FACILITY_LOCAL2 },  
   { "LOCAL3", SYSLOG_FACILITY_LOCAL3 },  
   { "LOCAL4", SYSLOG_FACILITY_LOCAL4 },  
   { "LOCAL5", SYSLOG_FACILITY_LOCAL5 },  
   { "LOCAL6", SYSLOG_FACILITY_LOCAL6 },  
   { "LOCAL7", SYSLOG_FACILITY_LOCAL7 },  
   { NULL, 0 }  
 };  
   
 static struct  
 {  
   const char *name;  
   LogLevel level;  
 } log_levels[] =  
 {  
   { "QUIET", SYSLOG_LEVEL_QUIET },  
   { "FATAL", SYSLOG_LEVEL_FATAL },  
   { "ERROR", SYSLOG_LEVEL_ERROR },  
   { "INFO",  SYSLOG_LEVEL_INFO },  
   { "CHAT",  SYSLOG_LEVEL_CHAT },  
   { "DEBUG", SYSLOG_LEVEL_DEBUG },  
   { NULL, 0 }  
 };  
   
 /* Returns the number of the token pointed to by cp of length len.  /* Returns the number of the token pointed to by cp of length len.
    Never returns if the token is not known. */     Never returns if the token is not known. */
   
Line 495 
Line 460 
           goto parse_flag;            goto parse_flag;
   
         case sLogFacility:          case sLogFacility:
             intptr = (int *)&options->log_facility;
           cp = strtok(NULL, WHITESPACE);            cp = strtok(NULL, WHITESPACE);
           if (!cp)            value = log_facility_number(cp);
             {            if (value == (SyslogFacility)-1)
               fprintf(stderr, "%s line %d: missing facility name.\n",              fatal("%.200s line %d: unsupported log facility '%s'\n",
                       filename, linenum);                filename, linenum, cp ? cp : "<NONE>");
               exit(1);            if (*intptr == -1)
             }              *intptr = (SyslogFacility)value;
           for (i = 0; log_facilities[i].name; i++)  
             if (strcasecmp(log_facilities[i].name, cp) == 0)  
               break;  
           if (!log_facilities[i].name)  
             {  
               fprintf(stderr, "%s line %d: unsupported log facility %s\n",  
                       filename, linenum, cp);  
               exit(1);  
             }  
           if (options->log_facility == (SyslogFacility)(-1))  
             options->log_facility = log_facilities[i].facility;  
           break;            break;
   
         case sLogLevel:          case sLogLevel:
             intptr = (int *)&options->log_level;
           cp = strtok(NULL, WHITESPACE);            cp = strtok(NULL, WHITESPACE);
           if (!cp)            value = log_level_number(cp);
             {            if (value == (LogLevel)-1)
               fprintf(stderr, "%s line %d: missing level name.\n",              fatal("%.200s line %d: unsupported log level '%s'\n",
                       filename, linenum);                filename, linenum, cp ? cp : "<NONE>");
               exit(1);            if (*intptr == -1)
             }              *intptr = (LogLevel)value;
           for (i = 0; log_levels[i].name; i++)  
             if (strcasecmp(log_levels[i].name, cp) == 0)  
               break;  
           if (!log_levels[i].name)  
             {  
               fprintf(stderr, "%s line %d: unsupported log level %s\n",  
                       filename, linenum, cp);  
               exit(1);  
             }  
           if (options->log_level == (LogLevel)(-1))  
             options->log_level = log_levels[i].level;  
           break;            break;
   
         case sAllowUsers:          case sAllowUsers:

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23