mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 10:18:25 +00:00
Fix spacing in translatable strings.
Signed-off-by: Matthias Andree <matthias.andree@gmx.de>
This commit is contained in:
committed by
Simon Kelley
parent
2a407a76be
commit
b5d1b20727
@@ -378,7 +378,7 @@ void lease_update_file(time_t now)
|
|||||||
if (next_event == 0 || difftime(next_event, LEASE_RETRY + now) > 0.0)
|
if (next_event == 0 || difftime(next_event, LEASE_RETRY + now) > 0.0)
|
||||||
next_event = LEASE_RETRY + now;
|
next_event = LEASE_RETRY + now;
|
||||||
|
|
||||||
my_syslog(MS_DHCP | LOG_ERR, _("failed to write %s: %s (retry in %us)"),
|
my_syslog(MS_DHCP | LOG_ERR, _("failed to write %s: %s (retry in %u s)"),
|
||||||
daemon->lease_file, strerror(err),
|
daemon->lease_file, strerror(err),
|
||||||
(unsigned int)difftime(next_event, now));
|
(unsigned int)difftime(next_event, now));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ int add_to_ipset(const char *setname, const union all_addr *ipaddr,
|
|||||||
io.pfrio_size = 1;
|
io.pfrio_size = 1;
|
||||||
if (ioctl(dev, DIOCRADDTABLES, &io))
|
if (ioctl(dev, DIOCRADDTABLES, &io))
|
||||||
{
|
{
|
||||||
my_syslog(LOG_WARNING, _("IPset: error:%s"), pfr_strerror(errno));
|
my_syslog(LOG_WARNING, _("IPset: error: %s"), pfr_strerror(errno));
|
||||||
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user