Fix Error Message
authorFulup Ar Foll <fulup@iot.bzh>
Wed, 27 Jan 2016 10:58:25 +0000 (11:58 +0100)
committerFulup Ar Foll <fulup@iot.bzh>
Wed, 27 Jan 2016 10:58:25 +0000 (11:58 +0100)
src/http-svc.c

index 3b9db7a..839fc2f 100644 (file)
@@ -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);