summaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/httpd.c b/httpd.c
index 50f56f2..de76776 100644
--- a/httpd.c
+++ b/httpd.c
@@ -59,7 +59,7 @@ static jmp_buf on_break;
59/** code **/ 59/** code **/
60 60
61/* nodeinfo 2.0 template */ 61/* nodeinfo 2.0 template */
62const char *nodeinfo_2_0_template = "" 62const char * const nodeinfo_2_0_template = ""
63 "{\"version\":\"2.0\"," 63 "{\"version\":\"2.0\","
64 "\"software\":{\"name\":\"snac\",\"version\":\"" VERSION "\"}," 64 "\"software\":{\"name\":\"snac\",\"version\":\"" VERSION "\"},"
65 "\"protocols\":[\"activitypub\"]," 65 "\"protocols\":[\"activitypub\"],"
@@ -172,7 +172,7 @@ static xs_str *greeting_html(void)
172} 172}
173 173
174 174
175const char *share_page = "" 175const char * const share_page = ""
176"<!DOCTYPE html>\n" 176"<!DOCTYPE html>\n"
177"<html>\n" 177"<html>\n"
178"<head>\n" 178"<head>\n"
@@ -190,7 +190,7 @@ const char *share_page = ""
190""; 190"";
191 191
192 192
193const char *authorize_interaction_page = "" 193const char * const authorize_interaction_page = ""
194"<!DOCTYPE html>\n" 194"<!DOCTYPE html>\n"
195"<html>\n" 195"<html>\n"
196"<head>\n" 196"<head>\n"