From: Christopher Faulet Date: Thu, 24 Apr 2025 14:19:11 +0000 (+0200) Subject: CLEANUP: applet: Remove unsued rule pointer in appctx structure X-Git-Tag: v3.2-dev12~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29632bcabf5e76dd248e21afe3120a8f26cda42c;p=thirdparty%2Fhaproxy.git CLEANUP: applet: Remove unsued rule pointer in appctx structure Thanks to previous commits, the "rule" field in the appctx structure is no longer used. So we can safely remove it. --- diff --git a/include/haproxy/applet-t.h b/include/haproxy/applet-t.h index c0a5db3b8..9c0eac9e3 100644 --- a/include/haproxy/applet-t.h +++ b/include/haproxy/applet-t.h @@ -127,7 +127,6 @@ struct appctx { if the command is terminated or the session released */ } cli_ctx; /* context dedicated to the CLI applet */ - struct act_rule *rule; /* rule associated with the applet. */ struct buffer_wait buffer_wait; /* position in the list of objects waiting for a buffer */ struct task *t; /* task associated to the applet */ struct freq_ctr call_rate; /* appctx call rate */