Re: error: expected ')' before '*' token -- What is this ?
- From: Lew Pitcher <lpitcher@xxxxxxxxxxxx>
- Date: Tue, 31 Jul 2007 06:55:01 -0700
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
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 ?
Well, the message says that the syntax error occurred
In file included from mfunc.c:1
which (in a later post) appears to be your
#include "mdef.h"
Otherwise, your code does not appear to contain any syntax errors that
would be detected and reported as
mfunc.c:42: error: expected ')' before '*' token
so I'm guessing that your mdef.h header has the syntax error.
HTH
--
Lew
.
- References:
- error: expected ')' before '*' token -- What is this ?
- From: Ram Prasad
- error: expected ')' before '*' token -- What is this ?
- Prev by Date: Re: error: expected ')' before '*' token -- What is this ?
- Next by Date: Re: error: expected ')' before '*' token -- What is this ?
- Previous by thread: Re: error: expected ')' before '*' token -- What is this ?
- Next by thread: Re: error: expected ')' before '*' token -- What is this ?
- Index(es):
Relevant Pages
|