Skip to content

Commit f39751e

Browse files
committed
Fix typo
1 parent 98fce11 commit f39751e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/http.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ http_callback_404(httpd * webserver, request * r, int error_code)
129129
for (rule = get_ruleset("global"); rule != NULL; rule = rule->next) {
130130
debug(LOG_INFO, "rule mask %s", rule->mask);
131131
if (strstr(r->request.host, rule->mask) == NULL) {
132-
debug(LOG_INFO, "host %s is not in %s, contiue", r->request.host, rule->mask);
132+
debug(LOG_INFO, "host %s is not in %s, continue", r->request.host, rule->mask);
133133
continue;
134134
}
135135
int host_length = strlen(r->request.host);

0 commit comments

Comments
 (0)