summaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/httpd.c b/httpd.c
index 3746a7f..5b26122 100644
--- a/httpd.c
+++ b/httpd.c
@@ -79,6 +79,9 @@ int server_get_handler(d_char *req, char *q_path,
79 *ctype = "image/png"; 79 *ctype = "image/png";
80 } 80 }
81 81
82 if (status != 0)
83 srv_debug(1, xs_fmt("server_get_handler '%s' %d", q_path, status));
84
82 return status; 85 return status;
83} 86}
84 87