]> andersk Git - openssh.git/commitdiff
- djm@cvs.openbsd.org 2004/06/21 22:02:58
authordtucker <dtucker>
Tue, 22 Jun 2004 02:57:44 +0000 (02:57 +0000)
committerdtucker <dtucker>
Tue, 22 Jun 2004 02:57:44 +0000 (02:57 +0000)
     [log.h]
     mark fatal and cleanup exit as __dead; ok markus@

ChangeLog
log.h

index 450195f7faf43270a208420729b2b86f16300f6e..1eb8c0d3912995f579df41f938f17875809e5eb0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -21,6 +21,9 @@
    - djm@cvs.openbsd.org 2004/06/21 17:53:03
      [session.c]
      fix fd leak for multiple subsystem connections; with markus@
+   - djm@cvs.openbsd.org 2004/06/21 22:02:58
+     [log.h]
+     mark fatal and cleanup exit as __dead; ok markus@
 
 20040620
  - (tim) [configure.ac Makefile.in] Only change TEST_SHELL on broken platforms.
diff --git a/log.h b/log.h
index e0263194f78bb9ae1f760752578a18033eb8f579..2b3c3090f9306820185a8a5204c28b1b9388e830 100644 (file)
--- a/log.h
+++ b/log.h
@@ -1,4 +1,4 @@
-/*     $OpenBSD: log.h,v 1.10 2003/09/23 20:17:11 markus Exp $ */
+/*     $OpenBSD: log.h,v 1.11 2004/06/21 22:02:58 djm Exp $    */
 
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -53,7 +53,7 @@ void     log_init(char *, LogLevel, SyslogFacility, int);
 SyslogFacility log_facility_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     logit(const char *, ...) __attribute__((format(printf, 1, 2)));
 void     verbose(const char *, ...) __attribute__((format(printf, 1, 2)));
@@ -62,5 +62,5 @@ void     debug2(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    cleanup_exit(int);
+void    cleanup_exit(int) __dead;
 #endif
This page took 1.277107 seconds and 5 git commands to generate.