Commit f5179ab2 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Try to isolate this even better.

Fixes #2250  (again)
parent e706b22a
......@@ -65,8 +65,10 @@
/***********************************************************************/
#ifndef __v_printflike
# define __v_printflike(a,b)
#ifdef __v_printflike
# define __vrt_printflike(a,b) __v_printflike(a,b)
#else
# define __vrt_printflike(a,b)
#endif
struct VCL_conf;
......@@ -300,7 +302,7 @@ struct http *VRT_selecthttp(VRT_CTX, enum gethdr_e);
const char *VRT_GetHdr(VRT_CTX, const struct gethdr_s *);
void VRT_SetHdr(VRT_CTX, const struct gethdr_s *, const char *, ...);
void VRT_handling(VRT_CTX, unsigned hand);
void VRT_fail(VRT_CTX, const char *fmt, ...) __v_printflike(2,3);
void VRT_fail(VRT_CTX, const char *fmt, ...) __vrt_printflike(2,3);
void VRT_hashdata(VRT_CTX, const char *str, ...);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment