From c4ec16f3868b099f2904b54be78bcd09d3760a24 Mon Sep 17 00:00:00 2001 From: Fulup Ar Foll Date: Wed, 27 Jan 2016 11:58:25 +0100 Subject: [PATCH] Fix Error Message --- src/http-svc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http-svc.c b/src/http-svc.c index 3b9db7ad..839fc2ff 100644 --- a/src/http-svc.c +++ b/src/http-svc.c @@ -249,7 +249,7 @@ STATIC int newRequest(void *cls, } // Nothing respond to this request Files, API, Angular Base - const char *errorstr = "Alsa-Json-Gateway Unknown or Not readable file"; + const char *errorstr = "AFB-Daemon File Not Find file"; response = MHD_create_response_from_buffer(strlen(errorstr), (void*)errorstr, MHD_RESPMEM_PERSISTENT); ret = MHD_queue_response(connection, MHD_HTTP_INTERNAL_SERVER_ERROR, response); return (MHD_YES); -- 2.16.6