aboutsummaryrefslogtreecommitdiff
path: root/networking/httpd_post_upload.txt
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-09-09 22:33:30 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-09-09 22:33:30 +0200
commite66ccfaa2c0a575f56202dd343de923929cf1f38 (patch)
tree619f948c5422be93a397d251b2d39d24b0dfe86e /networking/httpd_post_upload.txt
parent108b8c5367e224568d22e8ef32a56aa166ab1e79 (diff)
downloadbusybox-e66ccfaa2c0a575f56202dd343de923929cf1f38.tar.gz
remove some garbage from http POST upload example
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/httpd_post_upload.txt')
-rw-r--r--networking/httpd_post_upload.txt4
1 files changed, 2 insertions, 2 deletions
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 <<EOF