aboutsummaryrefslogtreecommitdiffstats
path: root/lock.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2020-10-14 00:27:55 +0200
committerMatthias Andree <matthias.andree@gmx.de>2020-10-14 00:27:55 +0200
commitf0789c07ccedf6f56a951c357c5d80710f4653d3 (patch)
tree2ff304535b37ab12263b9e3676ac0b46abe43bed /lock.c
parentb25243446244619ffa24405e9af93442d70c5ed7 (diff)
downloadfetchmail-f0789c07ccedf6f56a951c357c5d80710f4653d3.tar.gz
fetchmail-f0789c07ccedf6f56a951c357c5d80710f4653d3.tar.bz2
fetchmail-f0789c07ccedf6f56a951c357c5d80710f4653d3.zip
Fixup missing argument in lock.c error message.
Diffstat (limited to 'lock.c')
-rw-r--r--lock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lock.c b/lock.c
index 985fefe2..43355150 100644
--- a/lock.c
+++ b/lock.c
@@ -184,7 +184,7 @@ void fm_lock_release(void)
{
if (unlink(lockfile)) {
if (truncate(lockfile, (off_t)0)) {
- report(stderr, GT_("fetchmail: cannot remove or truncate pidfile \"%s\": %s\n"), strerror(errno));
+ report(stderr, GT_("fetchmail: cannot remove or truncate pidfile \"%s\": %s\n"), lockfile, strerror(errno));
}
}
}