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

Diff for /src/usr.bin/ssh/log.c between version 1.2 and 1.3

version 1.2, 1999/11/19 16:04:17 version 1.3, 1999/11/22 21:02:38
Line 47 
Line 47 
 /* More detailed messages (information that does not need to go to the log). */  /* More detailed messages (information that does not need to go to the log). */
   
 void  void
 chat(const char *fmt, ...)  verbose(const char *fmt, ...)
 {  {
   va_list args;    va_list args;
   va_start(args, fmt);    va_start(args, fmt);
   do_log(SYSLOG_LEVEL_CHAT, fmt, args);    do_log(SYSLOG_LEVEL_VERBOSE, fmt, args);
   va_end(args);    va_end(args);
 }  }
   
Line 167 
Line 167 
   { "FATAL",   SYSLOG_LEVEL_FATAL },    { "FATAL",   SYSLOG_LEVEL_FATAL },
   { "ERROR",   SYSLOG_LEVEL_ERROR },    { "ERROR",   SYSLOG_LEVEL_ERROR },
   { "INFO",    SYSLOG_LEVEL_INFO },    { "INFO",    SYSLOG_LEVEL_INFO },
   { "CHAT",     SYSLOG_LEVEL_CHAT },    { "VERBOSE", SYSLOG_LEVEL_VERBOSE },
   { "DEBUG",   SYSLOG_LEVEL_DEBUG },    { "DEBUG",   SYSLOG_LEVEL_DEBUG },
   { NULL, 0 }    { NULL, 0 }
 };  };

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3