From 5183c6386a94d1a97484e4701813afff20bbbc9d Mon Sep 17 00:00:00 2001 From: Ferry Boender Date: Wed, 4 Jan 2017 12:45:01 +0100 Subject: [PATCH] Removed quotes around content disposition header in examples --- examples/megacorp_acc/job_download_db.sh | 2 +- examples/output_types/job_large_bin.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/megacorp_acc/job_download_db.sh b/examples/megacorp_acc/job_download_db.sh index a5b96b7..1ce3246 100755 --- a/examples/megacorp_acc/job_download_db.sh +++ b/examples/megacorp_acc/job_download_db.sh @@ -4,7 +4,7 @@ FILESIZE=$(stat -c "%s" megacorp.db) cat << EOF HTTP/1.0 200 Ok Content-Type: application/octet-stream -Content-Disposition: attachment; filename="megacorp.db" +Content-Disposition: attachment; filename=megacorp.db Content-Length: $FILESIZE EOF diff --git a/examples/output_types/job_large_bin.sh b/examples/output_types/job_large_bin.sh index c205a00..5f1803f 100755 --- a/examples/output_types/job_large_bin.sh +++ b/examples/output_types/job_large_bin.sh @@ -4,7 +4,7 @@ FILESIZE=$(expr 1024 \* 1000 \* 100) cat << EOF HTTP/1.0 200 Ok Content-Type: application/octet-stream -Content-Disposition: attachment; filename="large_file.dat" +Content-Disposition: attachment; filename=large_file.dat Content-Length: $FILESIZE EOF