diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-08-26 20:28:32 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:16:48 -0500 |
commit | 03dd0d5fc84abafea48dd103da4c6ade23ad05b7 (patch) | |
tree | 32e273119af6f9446ee64bb2ebb5ddd38ddc980a | |
parent | 6e9097045fcea332d91791d9820d7ad8e086f6d4 (diff) | |
download | samba-03dd0d5fc84abafea48dd103da4c6ade23ad05b7.tar.gz samba-03dd0d5fc84abafea48dd103da4c6ade23ad05b7.tar.bz2 samba-03dd0d5fc84abafea48dd103da4c6ade23ad05b7.zip |
r17844: The AIX compiler thinks { } is a syntax error
(This used to be commit 4189736e09dab2b7ff57b7bba04d54c0ffeea140)
-rw-r--r-- | source4/lib/ldb/tools/convert.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/lib/ldb/tools/convert.c b/source4/lib/ldb/tools/convert.c index 35f56f51d3..2320970030 100644 --- a/source4/lib/ldb/tools/convert.c +++ b/source4/lib/ldb/tools/convert.c @@ -138,7 +138,8 @@ static const struct syntax_map syntax_map[] = { .equality = "caseExactIA5Match", .comment = "IA5 String" }, - { } + { .Standard_OID = NULL + } }; |