From: Matthias Kruk Date: Fri, 18 Jun 2021 07:20:23 +0000 (+0900) Subject: include/ipc: Fix invalid function reference X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=222228853eea23a16590ffb9ea09c2c6e4df988b;p=toolbox 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. --- 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