Merge pull request #3493 from goekesmi/master
Pass content via printf string format and argumentpull/3494/head
commit
5707b93110
2
acme.sh
2
acme.sh
|
@ -2357,7 +2357,7 @@ _startserver() {
|
||||||
echo 'HTTP/1.0 200 OK'; \
|
echo 'HTTP/1.0 200 OK'; \
|
||||||
echo 'Content-Length\: $_content_len'; \
|
echo 'Content-Length\: $_content_len'; \
|
||||||
echo ''; \
|
echo ''; \
|
||||||
printf -- '$content';" &
|
printf '%s' '$content';" &
|
||||||
serverproc="$!"
|
serverproc="$!"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue