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

Diff for /src/usr.bin/ssh/log.h between version 1.9.2.1 and 1.9.2.2

version 1.9.2.1, 2004/02/28 03:51:33 version 1.9.2.2, 2004/08/19 22:37:31
Line 48 
Line 48 
 SyslogFacility  log_facility_number(char *);  SyslogFacility  log_facility_number(char *);
 LogLevel log_level_number(char *);  LogLevel log_level_number(char *);
   
 void     fatal(const char *, ...) __attribute__((format(printf, 1, 2)));  void     fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2)));
 void     error(const char *, ...) __attribute__((format(printf, 1, 2)));  void     error(const char *, ...) __attribute__((format(printf, 1, 2)));
 void     logit(const char *, ...) __attribute__((format(printf, 1, 2)));  void     logit(const char *, ...) __attribute__((format(printf, 1, 2)));
 void     verbose(const char *, ...) __attribute__((format(printf, 1, 2)));  void     verbose(const char *, ...) __attribute__((format(printf, 1, 2)));
Line 57 
Line 57 
 void     debug3(const char *, ...) __attribute__((format(printf, 1, 2)));  void     debug3(const char *, ...) __attribute__((format(printf, 1, 2)));
   
 void     do_log(LogLevel, const char *, va_list);  void     do_log(LogLevel, const char *, va_list);
 void     cleanup_exit(int);  void     cleanup_exit(int) __dead;
 #endif  #endif

Legend:
Removed from v.1.9.2.1  
changed lines
  Added in v.1.9.2.2