diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-29 02:21:02 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-29 02:21:02 +0000 |
commit | e8a3fa91a60310559d6ef3eb66663eab4c55b1c1 (patch) | |
tree | 17dc47ab473e94d8c4abc9c88a59fff4214d0846 /src/or/eventdns.h | |
parent | b0a8ecd19377d13592819b1bc17ea513523b2ed4 (diff) | |
download | tor-e8a3fa91a60310559d6ef3eb66663eab4c55b1c1.tar.gz tor-e8a3fa91a60310559d6ef3eb66663eab4c55b1c1.zip |
Use a consistent naming standard for header file guard macros, taking care not to collide with any system headers. This tripped us up on Android.
svn:r17805
Diffstat (limited to 'src/or/eventdns.h')
-rw-r--r-- | src/or/eventdns.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/eventdns.h b/src/or/eventdns.h index df5b936923..8d9a0b8fb8 100644 --- a/src/or/eventdns.h +++ b/src/or/eventdns.h @@ -209,8 +209,8 @@ * with the next probe. */ -#ifndef EVENTDNS_H -#define EVENTDNS_H +#ifndef _TOR_EVENTDNS_H +#define _TOR_EVENTDNS_H /* Error codes 0-5 are as described in RFC 1035. */ #define DNS_ERR_NONE 0 |