Skip to content
Snippets Groups Projects
Commit 00009641 authored by Jacob Vosmaer's avatar Jacob Vosmaer
Browse files

Treat $# as a trusted input

parent cc893c44
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -11,7 +11,7 @@ cert = $3
EOF
}
 
if [ x$# != x3 ] ; then
if [ $# -ne 3 ] ; then
echo "Usage: $0 LISTEN_ADDRESS WORKHORSE_SOCKET CERTIFICATE"
exit 1
fi
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment