Commit
671b6f0 ("MEDIUM: Add enable and disable agent unix socket commands")
forgot to update the relevant help messages. This was done in 1.5-dev20, no
backport is needed.
return 1;
}
else { /* unknown "enable" parameter */
- appctx->ctx.cli.msg = "'enable' only supports 'frontend' and 'server'.\n";
+ appctx->ctx.cli.msg = "'enable' only supports 'agent', 'frontend' and 'server'.\n";
appctx->st0 = STAT_CLI_PRINT;
return 1;
}
return 1;
}
else { /* unknown "disable" parameter */
- appctx->ctx.cli.msg = "'disable' only supports 'frontend' and 'server'.\n";
+ appctx->ctx.cli.msg = "'disable' only supports 'agent', 'frontend' and 'server'.\n";
appctx->st0 = STAT_CLI_PRINT;
return 1;
}