captivectrl: Add missing space character

The iptables argument list was botched. Oops. Sorry.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2016-01-31 21:38:26 +00:00
parent 0c24f0a9df
commit 0d6a599aba

View File

@@ -160,7 +160,7 @@ static int add_client_rules(const client_t* clients) {
char* time_end = format_time(&expires);
len += snprintf(match + len, sizeof(match) - len,
"-m time --datestart %s --datestop %s",
" -m time --datestart %s --datestop %s",
time_start, time_end);
free(time_start);