From 815468b44243a7f1fc0a49153df9f174fbc2c381 Mon Sep 17 00:00:00 2001 From: adamdunkels Date: Wed, 3 Feb 2010 21:06:51 +0000 Subject: [PATCH] Added missing argument to send_string() --- apps/webserver/httpd-cfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/webserver/httpd-cfs.c b/apps/webserver/httpd-cfs.c index 417724b22..f34bdd870 100644 --- a/apps/webserver/httpd-cfs.c +++ b/apps/webserver/httpd-cfs.c @@ -30,7 +30,7 @@ * * Author: Adam Dunkels * - * $Id: httpd-cfs.c,v 1.13 2010/02/03 20:41:16 adamdunkels Exp $ + * $Id: httpd-cfs.c,v 1.14 2010/02/03 21:06:51 adamdunkels Exp $ */ #include @@ -137,7 +137,7 @@ PT_THREAD(handle_output(struct httpd_state *s)) PT_WAIT_THREAD(&s->outputpt, send_headers(s, http_header_404)); PT_WAIT_THREAD(&s->outputpt, - send_string("Not found")); + send_string(s, "Not found")); uip_close(); webserver_log_file(&uip_conn->ripaddr, "404 (no notfound.html)"); PT_EXIT(&s->outputpt);