summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--log.h10
-rw-r--r--sftp.h4
3 files changed, 13 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index f1cb4b892..75f6246ca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -139,6 +139,10 @@
139 - ian@cvs.openbsd.org 2008/06/12 23:24:58 139 - ian@cvs.openbsd.org 2008/06/12 23:24:58
140 [sshconnect.c] 140 [sshconnect.c]
141 tweak wording in message, ok deraadt@ jmc@ 141 tweak wording in message, ok deraadt@ jmc@
142 - dtucker@cvs.openbsd.org 2008/06/13 00:12:02
143 [sftp.h log.h]
144 replace __dead with __attribute__((noreturn)), makes things
145 a little easier to port. Also, add it to sigdie(). ok djm@
142 - (dtucker) [clientloop.c serverloop.c] channel_register_filter now 146 - (dtucker) [clientloop.c serverloop.c] channel_register_filter now
143 takes 2 more args. with djm@ 147 takes 2 more args. with djm@
144 148
@@ -4303,4 +4307,4 @@
4303 OpenServer 6 and add osr5bigcrypt support so when someone migrates 4307 OpenServer 6 and add osr5bigcrypt support so when someone migrates
4304 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 4308 passwords between UnixWare and OpenServer they will still work. OK dtucker@
4305 4309
4306$Id: ChangeLog,v 1.4993 2008/06/13 00:21:51 dtucker Exp $ 4310$Id: ChangeLog,v 1.4994 2008/06/13 00:22:54 dtucker Exp $
diff --git a/log.h b/log.h
index fa0996ad5..650582791 100644
--- a/log.h
+++ b/log.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: log.h,v 1.16 2008/06/10 04:50:25 dtucker Exp $ */ 1/* $OpenBSD: log.h,v 1.17 2008/06/13 00:12:02 dtucker Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -53,9 +53,11 @@ const char * log_facility_name(SyslogFacility);
53LogLevel log_level_number(char *); 53LogLevel log_level_number(char *);
54const char * log_level_name(LogLevel); 54const char * log_level_name(LogLevel);
55 55
56void fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2))); 56void fatal(const char *, ...) __attribute__((noreturn))
57 __attribute__((format(printf, 1, 2)));
57void error(const char *, ...) __attribute__((format(printf, 1, 2))); 58void error(const char *, ...) __attribute__((format(printf, 1, 2)));
58void sigdie(const char *, ...) __attribute__((format(printf, 1, 2))); 59void sigdie(const char *, ...) __attribute__((noreturn))
60 __attribute__((format(printf, 1, 2)));
59void logit(const char *, ...) __attribute__((format(printf, 1, 2))); 61void logit(const char *, ...) __attribute__((format(printf, 1, 2)));
60void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); 62void verbose(const char *, ...) __attribute__((format(printf, 1, 2)));
61void debug(const char *, ...) __attribute__((format(printf, 1, 2))); 63void debug(const char *, ...) __attribute__((format(printf, 1, 2)));
@@ -63,5 +65,5 @@ void debug2(const char *, ...) __attribute__((format(printf, 1, 2)));
63void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); 65void debug3(const char *, ...) __attribute__((format(printf, 1, 2)));
64 66
65void do_log(LogLevel, const char *, va_list); 67void do_log(LogLevel, const char *, va_list);
66void cleanup_exit(int) __dead; 68void cleanup_exit(int) __attribute__((noreturn));
67#endif 69#endif
diff --git a/sftp.h b/sftp.h
index b101b95a0..2bde8bb7f 100644
--- a/sftp.h
+++ b/sftp.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp.h,v 1.8 2008/04/18 12:32:11 djm Exp $ */ 1/* $OpenBSD: sftp.h,v 1.9 2008/06/13 00:12:02 dtucker Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2001 Markus Friedl. All rights reserved. 4 * Copyright (c) 2001 Markus Friedl. All rights reserved.
@@ -98,4 +98,4 @@
98struct passwd; 98struct passwd;
99 99
100int sftp_server_main(int, char **, struct passwd *); 100int sftp_server_main(int, char **, struct passwd *);
101void sftp_server_cleanup_exit(int) __dead; 101void sftp_server_cleanup_exit(int) __attribute__((noreturn));