Commit 0dd4b7ac authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Put macro-arg in (...)

parent 6a21288d
......@@ -189,30 +189,30 @@ SLTM(FetchError, 0, "Error while fetching object",
)
#define SLTH(tag, ind, req, resp, sdesc, ldesc) \
SLTM(Req##tag, req ? 0 : SLT_F_UNUSED, "Client request " sdesc, ldesc)
SLTM(Req##tag, (req ? 0 : SLT_F_UNUSED), "Client request " sdesc, ldesc)
#include "tbl/vsl_tags_http.h"
#undef SLTH
#define SLTH(tag, ind, req, resp, sdesc, ldesc) \
SLTM(Resp##tag, resp ? 0 : SLT_F_UNUSED, "Client response " sdesc, \
SLTM(Resp##tag, (resp ? 0 : SLT_F_UNUSED), "Client response " sdesc, \
ldesc)
#include "tbl/vsl_tags_http.h"
#undef SLTH
#define SLTH(tag, ind, req, resp, sdesc, ldesc) \
SLTM(Bereq##tag, req ? 0 : SLT_F_UNUSED, "Backend request " sdesc, \
SLTM(Bereq##tag, (req ? 0 : SLT_F_UNUSED), "Backend request " sdesc, \
ldesc)
#include "tbl/vsl_tags_http.h"
#undef SLTH
#define SLTH(tag, ind, req, resp, sdesc, ldesc) \
SLTM(Beresp##tag, resp ? 0 : SLT_F_UNUSED, "Backend response " sdesc, \
SLTM(Beresp##tag, (resp ? 0 : SLT_F_UNUSED), "Backend response " sdesc, \
ldesc)
#include "tbl/vsl_tags_http.h"
#undef SLTH
#define SLTH(tag, ind, req, resp, sdesc, ldesc) \
SLTM(Obj##tag, resp ? 0 : SLT_F_UNUSED, "Object " sdesc, ldesc)
SLTM(Obj##tag, (resp ? 0 : SLT_F_UNUSED), "Object " sdesc, ldesc)
#include "tbl/vsl_tags_http.h"
#undef SLTH
......
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