aboutsummaryrefslogtreecommitdiff
path: root/networking/httpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/httpd.c')
-rw-r--r--networking/httpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/httpd.c b/networking/httpd.c
index 3cad28921..e6757d943 100644
--- a/networking/httpd.c
+++ b/networking/httpd.c
@@ -2788,12 +2788,12 @@ int httpd_main(int argc UNUSED_PARAM, char **argv)
2788 , &verbose 2788 , &verbose
2789 ); 2789 );
2790 if (opt & OPT_DECODE_URL) { 2790 if (opt & OPT_DECODE_URL) {
2791 fputs(percent_decode_in_place(url_for_decode, /*strict:*/ 0), stdout); 2791 fputs_stdout(percent_decode_in_place(url_for_decode, /*strict:*/ 0));
2792 return 0; 2792 return 0;
2793 } 2793 }
2794#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR 2794#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
2795 if (opt & OPT_ENCODE_URL) { 2795 if (opt & OPT_ENCODE_URL) {
2796 fputs(encodeString(url_for_encode), stdout); 2796 fputs_stdout(encodeString(url_for_encode));
2797 return 0; 2797 return 0;
2798 } 2798 }
2799#endif 2799#endif