Wed Oct 14 16:01:29 2015 UTC ()
syslog attribute.


(christos)
diff -r1.12 -r1.13 src/external/bsd/blacklist/bin/internal.h

cvs diff -r1.12 -r1.13 src/external/bsd/blacklist/bin/Attic/internal.h (expand / switch to unified diff)

--- src/external/bsd/blacklist/bin/Attic/internal.h 2015/01/27 19:40:37 1.12
+++ src/external/bsd/blacklist/bin/Attic/internal.h 2015/10/14 16:01:29 1.13
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: internal.h,v 1.12 2015/01/27 19:40:37 christos Exp $ */ 1/* $NetBSD: internal.h,v 1.13 2015/10/14 16:01:29 christos Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2015 The NetBSD Foundation, Inc. 4 * Copyright (c) 2015 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Christos Zoulas. 8 * by Christos Zoulas.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
@@ -37,17 +37,21 @@ @@ -37,17 +37,21 @@
37#ifndef _PATH_BLCONTROL 37#ifndef _PATH_BLCONTROL
38#define _PATH_BLCONTROL "/libexec/blacklistd-helper" 38#define _PATH_BLCONTROL "/libexec/blacklistd-helper"
39#endif 39#endif
40#ifndef _PATH_BLSTATE 40#ifndef _PATH_BLSTATE
41#define _PATH_BLSTATE "/var/db/blacklistd.db" 41#define _PATH_BLSTATE "/var/db/blacklistd.db"
42#endif 42#endif
43 43
44extern struct confset rconf, lconf; 44extern struct confset rconf, lconf;
45extern int debug; 45extern int debug;
46extern const char *rulename; 46extern const char *rulename;
47extern const char *controlprog; 47extern const char *controlprog;
48extern struct ifaddrs *ifas; 48extern struct ifaddrs *ifas;
49 49
 50#if !defined(__syslog_attribute__) && !defined(__syslog__)
 51#define __syslog__ __printf__
 52#endif
 53
50void (*lfun)(int, const char *, ...) 54void (*lfun)(int, const char *, ...)
51 __attribute__((__format__(__printf__, 2, 3))); 55 __attribute__((__format__(__syslog__, 2, 3)));
52 56
53#endif /* _INTERNAL_H */ 57#endif /* _INTERNAL_H */