Add application/json type for canned success/failure responses
[blerg.git] / cgi / canned_responses.c
index a1e4f29..3b09913 100644 (file)
@@ -36,9 +36,11 @@ void respond_405() {
 }
 
 void respond_JSON_Failure() {
+       printf("Content-type: application/json\r\n");
        respond_simple_data(JSON_FAILURE, strlen(JSON_FAILURE));
 }
 
 void respond_JSON_Success() {
+       printf("Content-type: application/json\r\n");
        respond_simple_data(JSON_SUCCESS, strlen(JSON_SUCCESS));
 }