diff options
author | Darren Tucker <dtucker@zip.com.au> | 2004-06-22 12:57:44 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2004-06-22 12:57:44 +1000 |
commit | efa62f98a140e238256c2f75f4cd8a282fe802a3 (patch) | |
tree | 6f6db291ac9fa18abc444452470c8560ea9fedc0 | |
parent | 723e945b55b29ecd7ce908cf81a67fd998764aff (diff) |
- djm@cvs.openbsd.org 2004/06/21 22:02:58
[log.h]
mark fatal and cleanup exit as __dead; ok markus@
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | log.h | 6 |
2 files changed, 7 insertions, 4 deletions
@@ -21,6 +21,9 @@ | |||
21 | - djm@cvs.openbsd.org 2004/06/21 17:53:03 | 21 | - djm@cvs.openbsd.org 2004/06/21 17:53:03 |
22 | [session.c] | 22 | [session.c] |
23 | fix fd leak for multiple subsystem connections; with markus@ | 23 | fix fd leak for multiple subsystem connections; with markus@ |
24 | - djm@cvs.openbsd.org 2004/06/21 22:02:58 | ||
25 | [log.h] | ||
26 | mark fatal and cleanup exit as __dead; ok markus@ | ||
24 | 27 | ||
25 | 20040620 | 28 | 20040620 |
26 | - (tim) [configure.ac Makefile.in] Only change TEST_SHELL on broken platforms. | 29 | - (tim) [configure.ac Makefile.in] Only change TEST_SHELL on broken platforms. |
@@ -1343,4 +1346,4 @@ | |||
1343 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 1346 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
1344 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 1347 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
1345 | 1348 | ||
1346 | $Id: ChangeLog,v 1.3422 2004/06/22 02:57:08 dtucker Exp $ | 1349 | $Id: ChangeLog,v 1.3423 2004/06/22 02:57:44 dtucker Exp $ |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: log.h,v 1.10 2003/09/23 20:17:11 markus Exp $ */ | 1 | /* $OpenBSD: log.h,v 1.11 2004/06/21 22:02:58 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -53,7 +53,7 @@ void log_init(char *, LogLevel, SyslogFacility, int); | |||
53 | SyslogFacility log_facility_number(char *); | 53 | SyslogFacility log_facility_number(char *); |
54 | LogLevel log_level_number(char *); | 54 | LogLevel log_level_number(char *); |
55 | 55 | ||
56 | void fatal(const char *, ...) __attribute__((format(printf, 1, 2))); | 56 | void fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2))); |
57 | void error(const char *, ...) __attribute__((format(printf, 1, 2))); | 57 | void error(const char *, ...) __attribute__((format(printf, 1, 2))); |
58 | void logit(const char *, ...) __attribute__((format(printf, 1, 2))); | 58 | void logit(const char *, ...) __attribute__((format(printf, 1, 2))); |
59 | void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); | 59 | void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); |
@@ -62,5 +62,5 @@ void debug2(const char *, ...) __attribute__((format(printf, 1, 2))); | |||
62 | void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); | 62 | void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); |
63 | 63 | ||
64 | void do_log(LogLevel, const char *, va_list); | 64 | void do_log(LogLevel, const char *, va_list); |
65 | void cleanup_exit(int); | 65 | void cleanup_exit(int) __dead; |
66 | #endif | 66 | #endif |