Hi,
I have the following issue when making.
Do I miss something?
Thanks,
CC (gcc) [M utils.so] utils.o
utils.c: In function ‘w_http_query’:
utils.c:469:2: error: too many arguments to function ‘http_query’
return http_query(_m, _url, _result, NULL, NULL);
^
In file included from utils.c:50:0:
functions.h:43:5: note: declared here
int http_query(struct sip_msg* _m, char* _url, char* _dst, char* _post);
^
utils.c: In function ‘w_http_query_post’:
utils.c:476:2: error: too many arguments to function ‘http_query’
return http_query(_m, _url, _result, _post, NULL);
^
In file included from utils.c:50:0:
functions.h:43:5: note: declared here
int http_query(struct sip_msg* _m, char* _url, char* _dst, char* _post);
^
utils.c: In function ‘w_http_query_post_hdr’:
utils.c:483:2: error: too many arguments to function ‘http_query’
return http_query(_m, _url, _result, _post, _hdr);
^
In file included from utils.c:50:0:
functions.h:43:5: note: declared here
int http_query(struct sip_msg* _m, char* _url, char* _dst, char* _post);
^
make[1]: *** [utils.o] Error 1
make: *** [install-modules] Error 1
—
Reply to this email directly or view it on GitHub.