diff options
author | florian | 2016-09-04 14:40:34 +0000 |
---|---|---|
committer | Wynn Wolf Arbor | 2020-05-24 12:33:55 +0200 |
commit | 7ea5a8881c6e6ed751b221168ff8f33682a97d8b (patch) | |
tree | 54a9bd3aa810f7158c64e2ca11634f5558f02079 | |
parent | 6c6f8c0929957da7dee45425f6f36264d32683a1 (diff) | |
download | slowcgi-7ea5a8881c6e6ed751b221168ff8f33682a97d8b.tar.gz |
Add format attribute to logger functions. Fix format string while here. Input & OK benno@
Diffstat (limited to '')
-rw-r--r-- | slowcgi.c | 43 |
1 files changed, 28 insertions, 15 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: slowcgi.c,v 1.49 2016/08/16 08:23:18 reyk Exp $ */ +/* $OpenBSD: slowcgi.c,v 1.50 2016/09/04 14:40:34 florian Exp $ */ /* * Copyright (c) 2013 David Gwynne <dlg@openbsd.org> * Copyright (c) 2013 Florian Obser <florian@openbsd.org> @@ -196,12 +196,18 @@ void dump_fcgi_end_request_body(const char *, void cleanup_request(struct request *); struct loggers { - __dead void (*err)(int, const char *, ...); - __dead void (*errx)(int, const char *, ...); - void (*warn)(const char *, ...); - void (*warnx)(const char *, ...); - void (*info)(const char *, ...); - void (*debug)(const char *, ...); + __dead void (*err)(int, const char *, ...) + __attribute__((__format__ (printf, 2, 3))); + __dead void (*errx)(int, const char *, ...) + __attribute__((__format__ (printf, 2, 3))); + void (*warn)(const char *, ...) + __attribute__((__format__ (printf, 1, 2))); + void (*warnx)(const char *, ...) + __attribute__((__format__ (printf, 1, 2))); + void (*info)(const char *, ...) + __attribute__((__format__ (printf, 1, 2))); + void (*debug)(const char *, ...) + __attribute__((__format__ (printf, 1, 2))); }; const struct loggers conslogger = { @@ -213,13 +219,20 @@ const struct loggers conslogger = { warnx /* debug */ }; -__dead void syslog_err(int, const char *, ...); -__dead void syslog_errx(int, const char *, ...); -void syslog_warn(const char *, ...); -void syslog_warnx(const char *, ...); -void syslog_info(const char *, ...); -void syslog_debug(const char *, ...); -void syslog_vstrerror(int, int, const char *, va_list); +__dead void syslog_err(int, const char *, ...) + __attribute__((__format__ (printf, 2, 3))); +__dead void syslog_errx(int, const char *, ...) + __attribute__((__format__ (printf, 2, 3))); +void syslog_warn(const char *, ...) + __attribute__((__format__ (printf, 1, 2))); +void syslog_warnx(const char *, ...) + __attribute__((__format__ (printf, 1, 2))); +void syslog_info(const char *, ...) + __attribute__((__format__ (printf, 1, 2))); +void syslog_debug(const char *, ...) + __attribute__((__format__ (printf, 1, 2))); +void syslog_vstrerror(int, int, const char *, va_list) + __attribute__((__format__ (printf, 3, 0))); const struct loggers syslogger = { syslog_err, @@ -678,7 +691,7 @@ parse_begin_request(uint8_t *buf, uint16_t n, struct request *c, uint16_t id) } if (n != sizeof(struct fcgi_begin_request_body)) { - lwarnx("wrong size %d != %d", n, + lwarnx("wrong size %d != %lu", n, sizeof(struct fcgi_begin_request_body)); return; } |