diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-09-13 13:02:51 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:51:42 -0500 |
commit | 6b3c42b1a17956f69ea4a0c345a6b6fcd1429a81 (patch) | |
tree | 01c804bc596462091c816f13b8d8fc0ba0ff1146 | |
parent | dfa62cfa989f29138818fd4badf213fb35e8b48e (diff) | |
download | samba-6b3c42b1a17956f69ea4a0c345a6b6fcd1429a81.tar.gz samba-6b3c42b1a17956f69ea4a0c345a6b6fcd1429a81.tar.bz2 samba-6b3c42b1a17956f69ea4a0c345a6b6fcd1429a81.zip |
r18466: Attempt to fix the AIX build
(This used to be commit 1398425067d77d90ecf2ed4c17a12d643f7f5a88)
-rw-r--r-- | source3/libads/dns.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/libads/dns.c b/source3/libads/dns.c index 063665d136..c8b3f29507 100644 --- a/source3/libads/dns.c +++ b/source3/libads/dns.c @@ -46,7 +46,9 @@ # define T_A ns_t_a #endif # define T_SRV ns_t_srv +#if !defined(T_NS) /* AIX 5.3 already defines T_NS */ # define T_NS ns_t_ns +#endif #else # ifdef HFIXEDSZ # define NS_HFIXEDSZ HFIXEDSZ |