Move FORMAT parsing into send code.

This commit is contained in:
Ian Gulliver
2016-03-08 12:22:46 -08:00
parent d5eb4a919e
commit cd302a1746
8 changed files with 37 additions and 38 deletions

View File

@@ -177,11 +177,11 @@ static bool exec_receive(const char *arg) {
}
static bool exec_send(const char *arg) {
return opts_add_send(exec_add, send_flow, arg);
return send_add(exec_add, send_flow, arg);
}
static bool exec_send_receive(const char *arg) {
return opts_add_send(exec_add, send_receive_flow, arg);
return send_add(exec_add, send_receive_flow, arg);
}
void exec_opts_add() {