From: Willy Tarreau Date: Wed, 14 Dec 2016 14:58:39 +0000 (+0100) Subject: CLEANUP: applet: remove the now unused appctx->private field X-Git-Tag: v1.8-dev1~278 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=90f19e3c6806e70193434772b0a1820f1593b2d2;p=thirdparty%2Fhaproxy.git CLEANUP: applet: remove the now unused appctx->private field Nobody uses it anymore. This shrinks the appctx size by 8 bytes. --- diff --git a/include/types/applet.h b/include/types/applet.h index e7703b9549..29f6f5c26c 100644 --- a/include/types/applet.h +++ b/include/types/applet.h @@ -58,7 +58,6 @@ struct appctx { int (*io_handler)(struct appctx *appctx); /* used within the cli_io_handler when st0 = CLI_ST_CALLBACK */ void (*io_release)(struct appctx *appctx); /* used within the cli_io_handler when st0 = CLI_ST_CALLBACK, if the command is terminated or the session released */ - void *private; struct buffer_wait buffer_wait; /* position in the list of objects waiting for a buffer */ union {