summaryrefslogtreecommitdiffstats
path: root/source/configure.in
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-09-23 21:29:51 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:01:05 -0500
commit21a458ab9d132e09b9b00e4dbb32af4275b7c2fb (patch)
treef4e8b1f67a9fa67aba4064228bc7304d04dfb070 /source/configure.in
parent5cc4117692572f086b44324949546463681b837e (diff)
downloadsamba-21a458ab9d132e09b9b00e4dbb32af4275b7c2fb.tar.gz
samba-21a458ab9d132e09b9b00e4dbb32af4275b7c2fb.tar.xz
samba-21a458ab9d132e09b9b00e4dbb32af4275b7c2fb.zip
r18856: fixed HAVE_IMMEDIATE_STRUCTURES and thus checking of NTSTATUS/BOOL
mixups
Diffstat (limited to 'source/configure.in')
-rw-r--r--source/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/configure.in b/source/configure.in
index b9852ce979a..d6f658913e1 100644
--- a/source/configure.in
+++ b/source/configure.in
@@ -1001,7 +1001,7 @@ AC_CACHE_CHECK([for immediate structures],samba_cv_immediate_structures, [
#define X_FOOBAR(x) ((FOOBAR) { x })
#define FOO_ONE X_FOOBAR(1)
FOOBAR f = FOO_ONE;
- static struct {
+ struct {
FOOBAR y;
} f2[] = {
{FOO_ONE}