diff options
Diffstat (limited to 'httpd.c')
| -rw-r--r-- | httpd.c | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -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 */ |
| 62 | const char *nodeinfo_2_0_template = "" | 62 | const 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 | ||
| 175 | const char *share_page = "" | 175 | const 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 | ||
| 193 | const char *authorize_interaction_page = "" | 193 | const 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" |