From 4fd144c0a6526963c70f18cb34a65354c2f0a48c Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Mon, 24 Oct 2016 12:39:14 -0500 Subject: [PATCH] src/rc/rc-misc.c: report error if call to flock() fails X-Gentoo-Bug: 597390 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=597390 --- src/rc/rc-misc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rc/rc-misc.c b/src/rc/rc-misc.c index 250b3695..8afff0a2 100644 --- a/src/rc/rc-misc.c +++ b/src/rc/rc-misc.c @@ -228,6 +228,7 @@ svc_lock(const char *applet) if (fd == -1) return -1; if (flock(fd, LOCK_EX | LOCK_NB) == -1) { + eerror("Call to flock failed: %s", strerror(errno)); close(fd); return -1; }