A couple of objt_appctx() could be replaced with their unchecked
equivalent since the pointer is guaranteed and not checked there.
{
struct stream *s = si_strm(si);
struct uri_auth *uri = s->be->uri_auth;
- struct appctx *appctx = objt_appctx(si->end);
+ struct appctx *appctx = __objt_appctx(si->end);
chunk_printf(&trash,
"HTTP/1.1 200 OK\r\n"
char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
struct stream *s = si_strm(si);
struct uri_auth *uri = s->be->uri_auth;
- struct appctx *appctx = objt_appctx(si->end);
+ struct appctx *appctx = __objt_appctx(si->end);
/* scope_txt = search pattern + search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
scope_txt[0] = 0;