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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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="$!" |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|