Skip to content
Snippets Groups Projects
Commit feb91d11 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

conf: fix NetBSD compile warning

parent 824839e8
No related branches found
No related tags found
No related merge requests found
......@@ -369,7 +369,7 @@ static void conf_zone_start(void *scanner, char *name) {
// Convert zone name to lower-case.
for (size_t i = 0; this_zone->name[i]; i++) {
this_zone->name[i] = tolower(this_zone->name[i]);
this_zone->name[i] = tolower((unsigned char)this_zone->name[i]);
}
/* Check domain name. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment