From: Denys Vlasenko Date: Wed, 9 Sep 2009 20:33:30 +0000 (+0200) Subject: remove some garbage from http POST upload example X-Git-Tag: 1_16_0~508 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e66ccfaa2c0a575f56202dd343de923929cf1f38;p=oweals%2Fbusybox.git remove some garbage from http POST upload example Signed-off-by: Denys Vlasenko --- diff --git a/networking/httpd_post_upload.txt b/networking/httpd_post_upload.txt index a53b11467..fd7fc2be4 100644 --- a/networking/httpd_post_upload.txt +++ b/networking/httpd_post_upload.txt @@ -63,10 +63,10 @@ EOF } # Empty line + NOT delimiter. Save empty line, # and go check next line - printf "%s\n" $'\r' -vC >&3 + printf "%s\n" $'\r' >&3 done # Not empty line - just save - printf "%s\n" "$line" -vC >&3 + printf "%s\n" "$line" >&3 done 3>"$file" cat <