[Fix] Add missing unixsock name for ncat command

This commit is contained in:
samuel 2023-05-02 11:51:00 +02:00
parent 0f28de2bee
commit 3d087e401c
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ reply() (
fwd_reply() (
read -r json
if ! output="$(echo "${json}" | ncat --unixsock 2>&1)"; then
if ! output="$(echo "${json}" | ncat --unixsock "${response_sock}" 2>&1)"; then
log_error "Cannot write to sock '${response_sock}': ${output}."
fi
)