From 222228853eea23a16590ffb9ea09c2c6e4df988b Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Fri, 18 Jun 2021 16:20:23 +0900 Subject: [PATCH] include/ipc: Fix invalid function reference The ipc_endpoint_recv() function calls _ipc_msg_validate(), which has been renamed to ipc_msg_validate(). This commit fixes the reference so that the correct function is called. --- include/ipc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ipc.sh b/include/ipc.sh index 8ce852a..faab575 100644 --- a/include/ipc.sh +++ b/include/ipc.sh @@ -591,7 +591,7 @@ ipc_endpoint_recv() { fi if msg=$(_ipc_endpoint_get "$endpoint" "$remaining"); then - if _ipc_msg_validate "$msg"; then + if ipc_msg_validate "$msg"; then echo "$msg" return 0 fi -- 2.47.3