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

version 1.10, 2003/09/23 20:17:11 version 1.11, 2004/06/21 22:02:58
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.10  
changed lines
  Added in v.1.11