Browse Source

Merge pull request #3493 from goekesmi/master

Pass content via printf string format and argument
pull/3494/head
neil 4 years ago
committed by GitHub
parent
commit
5707b93110
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      acme.sh

2
acme.sh

@ -2357,7 +2357,7 @@ _startserver() {
echo 'HTTP/1.0 200 OK'; \
echo 'Content-Length\: $_content_len'; \
echo ''; \
printf -- '$content';" &
printf '%s' '$content';" &
serverproc="$!"
}

Loading…
Cancel
Save