diff options
author | Ron Yorston <rmy@pobox.com> | 2021-02-05 11:24:06 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-02-05 11:24:06 +0000 |
commit | 32e19e7ae8b0d76d69871ba234e8f0af31baff4e (patch) | |
tree | 6fdc833a444e0dd6fd359b21a8d463856917a387 /networking/httpd.c | |
parent | 4fb71406b884c6ac0a9a4d2acf7a32b544611f70 (diff) | |
parent | cad3fc743aa7c7744e4fcf044371f0fda50fa51f (diff) | |
download | busybox-w32-32e19e7ae8b0d76d69871ba234e8f0af31baff4e.tar.gz busybox-w32-32e19e7ae8b0d76d69871ba234e8f0af31baff4e.tar.bz2 busybox-w32-32e19e7ae8b0d76d69871ba234e8f0af31baff4e.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'networking/httpd.c')
-rw-r--r-- | networking/httpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index 02f544593..08313bbc7 100644 --- a/networking/httpd.c +++ b/networking/httpd.c | |||
@@ -2923,12 +2923,12 @@ int httpd_main(int argc UNUSED_PARAM, char **argv) | |||
2923 | , &verbose | 2923 | , &verbose |
2924 | ); | 2924 | ); |
2925 | if (opt & OPT_DECODE_URL) { | 2925 | if (opt & OPT_DECODE_URL) { |
2926 | fputs(percent_decode_in_place(url_for_decode, /*strict:*/ 0), stdout); | 2926 | fputs_stdout(percent_decode_in_place(url_for_decode, /*strict:*/ 0)); |
2927 | return 0; | 2927 | return 0; |
2928 | } | 2928 | } |
2929 | #if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR | 2929 | #if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR |
2930 | if (opt & OPT_ENCODE_URL) { | 2930 | if (opt & OPT_ENCODE_URL) { |
2931 | fputs(encodeString(url_for_encode), stdout); | 2931 | fputs_stdout(encodeString(url_for_encode)); |
2932 | return 0; | 2932 | return 0; |
2933 | } | 2933 | } |
2934 | #endif | 2934 | #endif |