=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/log.h,v retrieving revision 1.4.2.3 retrieving revision 1.5 diff -u -r1.4.2.3 -r1.5 --- src/usr.bin/ssh/log.h 2002/10/11 14:53:06 1.4.2.3 +++ src/usr.bin/ssh/log.h 2002/02/04 12:15:25 1.5 @@ -1,4 +1,4 @@ -/* $OpenBSD: log.h,v 1.4.2.3 2002/10/11 14:53:06 miod Exp $ */ +/* $OpenBSD: log.h,v 1.5 2002/02/04 12:15:25 markus Exp $ */ /* * Author: Tatu Ylonen @@ -28,7 +28,7 @@ SYSLOG_FACILITY_LOCAL5, SYSLOG_FACILITY_LOCAL6, SYSLOG_FACILITY_LOCAL7, - SYSLOG_FACILITY_NOT_SET = -1 + SYSLOG_FACILITY_NOT_SET = -1, } SyslogFacility; typedef enum { @@ -40,7 +40,7 @@ SYSLOG_LEVEL_DEBUG1, SYSLOG_LEVEL_DEBUG2, SYSLOG_LEVEL_DEBUG3, - SYSLOG_LEVEL_NOT_SET = -1 + SYSLOG_LEVEL_NOT_SET = -1, } LogLevel; void log_init(char *, LogLevel, SyslogFacility, int); @@ -59,8 +59,5 @@ void fatal_cleanup(void); void fatal_add_cleanup(void (*) (void *), void *); void fatal_remove_cleanup(void (*) (void *), void *); -void fatal_remove_all_cleanups(void); - -void do_log(LogLevel, const char *, va_list); #endif