From 60f6565d180b1ff2e36a3b7087f60b361e396c1b Mon Sep 17 00:00:00 2001 From: John Crispin Date: Mon, 20 Feb 2023 10:41:14 +0100 Subject: [PATCH] ucentral-event: make the ssh event payload a dictionary Signed-off-by: John Crispin --- feeds/ucentral/ucentral-event/files/ucentral-event | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feeds/ucentral/ucentral-event/files/ucentral-event b/feeds/ucentral/ucentral-event/files/ucentral-event index 8c1b5955f..455bc89be 100755 --- a/feeds/ucentral/ucentral-event/files/ucentral-event +++ b/feeds/ucentral/ucentral-event/files/ucentral-event @@ -204,7 +204,7 @@ function log_subscriber_notify_cb(notify) { switch(daemon) { case 'dropbear': - event('ssh', '', msg[1]); + event('ssh', '', { msg: msg[1] }); break; } }