summaryrefslogtreecommitdiffstats
path: root/source/libaddns
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-09-23 21:41:41 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:01:06 -0500
commitc8670b33b490daeaff987c21fcb0ec601a91d54e (patch)
tree07dbb4ad58ebbe90b1d1f5c405d0d201fbb916c3 /source/libaddns
parent91955c1f266e8f8ee9d4775dffdcc59b44280060 (diff)
downloadsamba-c8670b33b490daeaff987c21fcb0ec601a91d54e.tar.gz
samba-c8670b33b490daeaff987c21fcb0ec601a91d54e.tar.xz
samba-c8670b33b490daeaff987c21fcb0ec601a91d54e.zip
r18858: arrgh! - since HAVE_IMMEDIATE_STRUCTURES were last enabled the code
can no longer handle it (at least with gcc 4.1.2). Disable it until investigated and fixed properly.
Diffstat (limited to 'source/libaddns')
-rw-r--r--source/libaddns/dnserr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/libaddns/dnserr.h b/source/libaddns/dnserr.h
index eee1303c000..013120b6524 100644
--- a/source/libaddns/dnserr.h
+++ b/source/libaddns/dnserr.h
@@ -37,7 +37,7 @@
/* Setup the DNS_ERROR typedef. Technique takes from nt_status.h */
-#if defined(HAVE_IMMEDIATE_STRUCTURES)
+#if defined(HAVE_IMMEDIATE_STRUCTURES_XX_DISABLED)
typedef struct {uint32 v;} DNS_ERROR;
#define ERROR_DNS(x) ((DNS_ERROR) { x })
#define ERROR_DNS_V(x) ((x).v)