diff options
Diffstat (limited to 'src/common/inbound.c')
-rw-r--r-- | src/common/inbound.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/common/inbound.c b/src/common/inbound.c index f57207d1..a8c19504 100644 --- a/src/common/inbound.c +++ b/src/common/inbound.c @@ -1450,7 +1450,12 @@ nowindow: static int inbound_exec_eom_cmd (char *str, void *sess) { - handle_command (sess, (str[0] == '/') ? str + 1 : str, TRUE); + char *cmd; + + cmd = command_insert_vars ((session*)sess, (str[0] == '/') ? str + 1 : str); + handle_command ((session*)sess, cmd, TRUE); + g_free (cmd); + return 1; } |