diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2020-10-14 20:10:38 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2020-10-14 20:10:38 +0200 |
commit | 5f5326354d4c55d3a87eccc5e11927262900de9b (patch) | |
tree | 5f3fda7ed1a08d808db2998a54624cd2378034a7 /lock.c | |
parent | 1973ad467fbdb5395a26a01cdb6ebb708275965f (diff) | |
download | fetchmail-5f5326354d4c55d3a87eccc5e11927262900de9b.tar.gz fetchmail-5f5326354d4c55d3a87eccc5e11927262900de9b.tar.bz2 fetchmail-5f5326354d4c55d3a87eccc5e11927262900de9b.zip |
Fix argument order in 'cannot write to lockfile' message.
Reported by Petr Pisar, found while updating the Czech translation.
Diffstat (limited to 'lock.c')
-rw-r--r-- | lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -114,7 +114,7 @@ int fm_lock_state(void) * assume that we cannot write to it later, * complain and quit. */ report(stderr, GT_("fetchmail: cannot write to lockfile \"%s\" (%s), exiting\n"), - strerror(errno), lockfile); + lockfile, strerror(errno)); exit(PS_EXCLUDE); } } |