From 283fec0a36b4e2f9123448ba219fd6f2191eb27e Mon Sep 17 00:00:00 2001 From: goldsimon Date: Thu, 26 Oct 2017 11:30:26 +0200 Subject: [PATCH] fixed copy&paste bug introduced in last commit --- src/apps/httpd/httpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/httpd/httpd.c b/src/apps/httpd/httpd.c index 5aab144d..fd9fe74b 100644 --- a/src/apps/httpd/httpd.c +++ b/src/apps/httpd/httpd.c @@ -1615,7 +1615,7 @@ http_find_error_file(struct http_state *hs, u16_t error_nr) } else if (fs_open(&hs->file_handle, uri2) == ERR_OK) { uri = uri2; } else if (fs_open(&hs->file_handle, uri3) == ERR_OK) { - uri = uri2; + uri = uri3; } else { LWIP_DEBUGF(HTTPD_DEBUG, ("Error page for error %"U16_F" not found\n", error_nr));