Commit a194ba85 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

Enforce identical naming for command functions

parent f40d39a7
......@@ -674,7 +674,7 @@ static const struct cmds cmds[] = {
{ "barrier", cmd_barrier },
{ "random", cmd_random },
{ "feature", cmd_feature },
{ "logexpect", cmd_logexp },
{ "logexpect", cmd_logexpect },
{ "process", cmd_process },
{ NULL, NULL }
};
......
......@@ -63,7 +63,7 @@ cmd_f cmd_server;
cmd_f cmd_client;
cmd_f cmd_varnish;
cmd_f cmd_barrier;
cmd_f cmd_logexp;
cmd_f cmd_logexpect;
cmd_f cmd_process;
extern volatile sig_atomic_t vtc_error; /* Error, bail out */
......
......@@ -519,7 +519,7 @@ logexp_spec(struct logexp *le, const char *spec)
}
void
cmd_logexp(CMD_ARGS)
cmd_logexpect(CMD_ARGS)
{
struct logexp *le, *le2;
const char tmpdir[] = "${tmpdir}";
......
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