diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2016-01-27 11:58:25 +0100 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2016-01-27 11:58:25 +0100 |
commit | c4ec16f3868b099f2904b54be78bcd09d3760a24 (patch) | |
tree | dc5c0a59d4b4f1cc1d7a83f31de801a65cf6dab8 | |
parent | f9a4e26ee162d769a6c85ee49c5571c8e331ac9b (diff) |
Fix Error Message
-rw-r--r-- | src/http-svc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 = "<html><body>Alsa-Json-Gateway Unknown or Not readable file</body></html>"; + const char *errorstr = "<html><body>AFB-Daemon File Not Find file</body></html>"; 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); |