summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2013-10-11 12:55:27 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2013-10-12 09:38:09 -0500
commitf751e14416066fa0290c76c1f675d4093bb1d436 (patch)
treeb6704b3af221d4d224ce04929d6b58510b574d9e /src
parent4b37d3b16f5544faef028d78b007a82cf98d8308 (diff)
downloadopenrc-f751e14416066fa0290c76c1f675d4093bb1d436.tar.gz
openrc-f751e14416066fa0290c76c1f675d4093bb1d436.tar.bz2
openrc-f751e14416066fa0290c76c1f675d4093bb1d436.tar.xz
convert flock() messages to verbose warnings
Convert these messages to warnings that are only displayed if EINFO_VERBOSE is set to yes in the environment. This is based on a suggestion from Patrick Lauer <patrick@gentoo.org>. X-Gentoo-Bug: 487588 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=487588
Diffstat (limited to 'src')
-rw-r--r--src/rc/runscript.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/rc/runscript.c b/src/rc/runscript.c
index 0eea335..3ecb6b5 100644
--- a/src/rc/runscript.c
+++ b/src/rc/runscript.c
@@ -313,15 +313,13 @@ write_prefix(const char *buffer, size_t bytes, bool *prefixed)
if (lock_fd != -1) {
while (flock(lock_fd, LOCK_EX) != 0) {
if (errno != EINTR) {
- eerror("flock() failed: %s", strerror(errno));
+ ewarnv("flock() failed: %s", strerror(errno));
break;
}
}
}
-#ifdef RC_DEBUG
else
- ewarn("Couldn't open the prefix lock, please make sure you have enough permissions");
-#endif
+ ewarnv("Couldn't open the prefix lock, please make sure you have enough permissions");
for (i = 0; i < bytes; i++) {
/* We don't prefix eend calls (cursor up) */