This commit is contained in:
Mark Riddoch
2014-11-19 12:07:13 +00:00
2 changed files with 23 additions and 18 deletions

View File

@ -1245,6 +1245,7 @@ static void enable_sess_log_action(DCB *dcb, char *arg1, char *arg2)
session_enable_log(session,type);
return;
}
session = session->next;
}
dcb_printf(dcb, "Session not found: %s\n", arg2);
@ -1287,6 +1288,7 @@ static void disable_sess_log_action(DCB *dcb, char *arg1, char *arg2)
session_disable_log(session,type);
return;
}
session = session->next;
}
dcb_printf(dcb, "Session not found: %s\n", arg2);