summaryrefslogtreecommitdiff
path: root/src/options.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-01-03 02:07:11 +0000
committerVincent Sanders <vince@kyllikki.org>2014-05-16 14:38:56 +0100
commit26e5be085e5c7a17cea4af7cb9e13502ffb0ebd1 (patch)
treebcf6bd9e83cdf03c851d3878c1141b0f2337ea60 /src/options.h
parent202be5081e4b201a3937407b2aff3328139ef1a3 (diff)
downloadnsgenbind-26e5be085e5c7a17cea4af7cb9e13502ffb0ebd1.tar.gz
nsgenbind-26e5be085e5c7a17cea4af7cb9e13502ffb0ebd1.tar.bz2
complete implementation of interface map generation and split out to own module
Diffstat (limited to 'src/options.h')
-rw-r--r--src/options.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/options.h b/src/options.h
index e002a11..cbac9a3 100644
--- a/src/options.h
+++ b/src/options.h
@@ -34,9 +34,10 @@ extern struct options *options;
enum opt_warnings {
WARNING_UNIMPLEMENTED = 1,
+ WARNING_DUPLICATED = 2,
};
-#define WARNING_ALL (WARNING_UNIMPLEMENTED)
+#define WARNING_ALL (WARNING_UNIMPLEMENTED | WARNING_DUPLICATED)
#define WARN(flags, msg, args...) do { \
if ((options->warnings & flags) != 0) { \