summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2023-05-01 13:15:13 -0500
committerCase Duckworth2023-05-01 13:15:13 -0500
commit1ca2f1b3135a465e8f92f3ea347903a47340b1f7 (patch)
treec8dbae1d4148b9b2ca120364da53391c108a2ffd
parentInitial commit (diff)
downloadyawp.sh-1ca2f1b3135a465e8f92f3ea347903a47340b1f7.tar.gz
yawp.sh-1ca2f1b3135a465e8f92f3ea347903a47340b1f7.zip
Convert line endings main
-rwxr-xr-xyawp.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/yawp.sh b/yawp.sh index b74febb..f819862 100755 --- a/yawp.sh +++ b/yawp.sh
@@ -36,7 +36,7 @@ EOF
36 36
37form_decode() { # form_decode << INPUT (application/x-www-form-urlencoded) 37form_decode() { # form_decode << INPUT (application/x-www-form-urlencoded)
38 # TODO: multipart/form-data ..? 38 # TODO: multipart/form-data ..?
39 awk '/%[0-9A-Fa-f][0-9A-Fa-f]/ { 39 crlf | awk '/%[0-9A-Fa-f][0-9A-Fa-f]/ {
40 while (s = match($0, "%[0-9A-Fa-f][0-9a-fA-F]") > 0) { 40 while (s = match($0, "%[0-9A-Fa-f][0-9a-fA-F]") > 0) {
41 chr = ""; 41 chr = "";
42 hexdigits = "0123456789abcdef"; 42 hexdigits = "0123456789abcdef";