mirror of
https://github.com/tmate-io/tmate.git
synced 2026-08-03 08:02:09 +00:00
Fix argument order in a log statement.
This commit is contained in:
parent
51a1dbfe09
commit
8378be03d1
1 changed files with 1 additions and 1 deletions
2
server.c
2
server.c
|
|
@ -166,7 +166,7 @@ server_start(int lockfd, char *lockfile)
|
|||
load_cfg(SYSTEM_CFG, NULL, &cfg_causes);
|
||||
else if (errno != ENOENT) {
|
||||
cfg_add_cause(
|
||||
&cfg_causes, "%s: %s", strerror(errno), SYSTEM_CFG);
|
||||
&cfg_causes, "%s: %s", SYSTEM_CFG, strerror(errno));
|
||||
}
|
||||
if (cfg_file != NULL)
|
||||
load_cfg(cfg_file, NULL, &cfg_causes);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue