r11658: Someone broke the initialization of the static modules by adding a 'NTSTATUS'
commit1c5a3c51e36d228442b74d9221d3ed8a13a1c513
authorJeremy Allison <jra@samba.org>
Fri, 11 Nov 2005 00:16:43 +0000 (11 00:16 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 16:05:23 +0000 (10 11:05 -0500)
tree76d8862fd7b14357ab9d1533688ad996bce3f331
parent46674ca21d9c257bc48af97e313b49118c7b478d
r11658: Someone broke the initialization of the static modules by adding a 'NTSTATUS'
declaration before their call.
The compiler sees : { NTSTATUS fn_foo(); NT_STATUS fn_bar(); }
as *definitions: They need to be : { fn_foo(); fn_bar(); }
Jeremy.
source/aclocal.m4