mirror of
https://github.com/skeeto/endlessh.git
synced 2024-11-25 06:33:11 +01:00
Fix format string defect in log message (#63)
This commit is contained in:
parent
a5913cbbb2
commit
1ecaafd577
@ -504,7 +504,7 @@ static void
|
||||
config_log(const struct config *c)
|
||||
{
|
||||
logmsg(log_info, "Port %d", c->port);
|
||||
logmsg(log_info, "Delay %ld", c->delay);
|
||||
logmsg(log_info, "Delay %d", c->delay);
|
||||
logmsg(log_info, "MaxLineLength %d", c->max_line_length);
|
||||
logmsg(log_info, "MaxClients %d", c->max_clients);
|
||||
logmsg(log_info, "BindFamily %s",
|
||||
|
Loading…
Reference in New Issue
Block a user