[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.16 and 1.17

version 1.16, 2008/06/10 04:50:25 version 1.17, 2008/06/13 00:12:02
Line 50 
Line 50 
 LogLevel        log_level_number(char *);  LogLevel        log_level_number(char *);
 const char *    log_level_name(LogLevel);  const char *    log_level_name(LogLevel);
   
 void     fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2)));  void     fatal(const char *, ...) __attribute__((noreturn))
       __attribute__((format(printf, 1, 2)));
 void     error(const char *, ...) __attribute__((format(printf, 1, 2)));  void     error(const char *, ...) __attribute__((format(printf, 1, 2)));
 void     sigdie(const char *, ...) __attribute__((format(printf, 1, 2)));  void     sigdie(const char *, ...)  __attribute__((noreturn))
       __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)));
 void     debug(const char *, ...) __attribute__((format(printf, 1, 2)));  void     debug(const char *, ...) __attribute__((format(printf, 1, 2)));
Line 60 
Line 62 
 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) __dead;  void     cleanup_exit(int) __attribute__((noreturn));
 #endif  #endif

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17