diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-19 00:43:35 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-19 00:43:35 +0000 |
commit | 715984299881265e3659c412d68139255d8c64e7 (patch) | |
tree | bdc96ed41c3c419cbddadd89cb9c7d51687884da /include | |
parent | 91c14cde8b5c1dd5bd503288cf10bc98084a1b95 (diff) |
Fix all the _FORTIFY_SOURCE warnings except "punned pointer".
We CANNOT fix this, as it is the recommended (and only) way to dlsym a symbol from a .so file.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5770 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/dns.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dns.h b/include/dns.h index 4a1335cc7..3295e29e3 100644 --- a/include/dns.h +++ b/include/dns.h @@ -104,6 +104,7 @@ typedef requestlist::iterator requestlist_iter; */ enum QueryType { + DNS_QUERY_NONE = 0, /* Uninitialized Query */ DNS_QUERY_A = 1, /* 'A' record: an ipv4 address */ DNS_QUERY_CNAME = 5, /* 'CNAME' record: An alias */ DNS_QUERY_PTR = 12, /* 'PTR' record: a hostname */ |