Re: error: expected ')' before '*' token -- What is this ?



On Jul 31, 6:31 am, Ram Prasad <ramprasad...@xxxxxxxxx> wrote:
I am trying to write a simple libspf2 plugin code for my postfix
( milter)
I am getting this unhelpful error message when I try to compile

gcc -g1 -Wall -I/usr/local/include/spf2 -I. -c mfunc.c
In file included from mfunc.c:1:
mfunc.c:42: error: expected ')' before '*' token
make: *** [mfunc.o] Error 1



I usually get this error when I mess up syntax (e.g. miss
a semicolon) or a header file has not been included properly.
Looks like things like SPF_request_t are not being recognized.
Make sure that the SPF.h (or whatever) files are included
and found (a message like "file SPF.h not found" is easy
to miss).

- William Hughes


my mfunc.c has on the line 42
-----------------------
. . . . .
SPF_result_t spfcheck_s(SPF_request_t *ecm_spf_request, char* ip,
char* helo, char* sender) {
SPF_response_t *spf_response = NULL;
SPF_result_t t;
SPF_request_set_ipv4_str( ecm_spf_request, ip );
SPF_request_set_helo_dom( ecm_spf_request, helo );
SPF_request_set_env_from( ecm_spf_request, sender );
SPF_request_query_mailfrom(ecm_spf_request, &spf_response);
t = SPF_response_result(spf_response);
SPF_response_free(spf_response);
return t;

}

. . . . .

So what could be the error ?

Thanks
Ram

PS:
Note to Spammers: Go ahead , send me spam
r...@xxxxxxxxxxxxxxxxx://ecm.netcore.co.in/spamtrap.html


.



Relevant Pages