summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--httpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/httpd.c b/httpd.c
index dd8978d..bfe14fe 100644
--- a/httpd.c
+++ b/httpd.c
@@ -76,7 +76,7 @@ int server_get_handler(d_char *req, char *q_path,
76 } 76 }
77 } 77 }
78 else 78 else
79 if (strcmp(q_path, "/susie.png") == 0) { 79 if (strcmp(q_path, "/susie.png") == 0 || strcmp(q_path, "/favicon.ico") == 0 ) {
80 status = 200; 80 status = 200;
81 *body = xs_base64_dec(susie, b_size); 81 *body = xs_base64_dec(susie, b_size);
82 *ctype = "image/png"; 82 *ctype = "image/png";