svn commit: samba r16765 - in trunk/source/libads: .

vlendec at samba.org vlendec at samba.org
Sun Jul 2 21:58:24 GMT 2006


Author: vlendec
Date: 2006-07-02 21:58:23 +0000 (Sun, 02 Jul 2006)
New Revision: 16765

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=16765

Log:
AIX already defines C_IN and T_A.

Volker

Modified:
   trunk/source/libads/dns.c


Changeset:
Modified: trunk/source/libads/dns.c
===================================================================
--- trunk/source/libads/dns.c	2006-07-02 21:49:42 UTC (rev 16764)
+++ trunk/source/libads/dns.c	2006-07-02 21:58:23 UTC (rev 16765)
@@ -39,8 +39,12 @@
 #define MAX_DNS_PACKET_SIZE 0xffff
 
 #ifdef NS_HFIXEDSZ	/* Bind 8/9 interface */
+#if !defined(C_IN)	/* AIX 5.3 already defines C_IN */
 #  define C_IN		ns_c_in
+#endif
+#if !defined(T_A)	/* AIX 5.3 already defines T_A */
 #  define T_A   	ns_t_a
+#endif
 #  define T_SRV 	ns_t_srv
 #else
 #  ifdef HFIXEDSZ



More information about the samba-cvs mailing list