From 05a642549de5f913819fba998be2c6e63b1774ad Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Tue, 5 Feb 2013 12:50:13 +0100 Subject: [PATCH] autoconf should exit with 0 when writing no --- tools/munin-plugins-busybox/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/munin-plugins-busybox/common.c b/tools/munin-plugins-busybox/common.c index 83457c17..03638b10 100644 --- a/tools/munin-plugins-busybox/common.c +++ b/tools/munin-plugins-busybox/common.c @@ -16,7 +16,7 @@ int autoconf_check_readable(const char *path) { return writeyes(); else { printf("no (%s is not readable, errno=%d)\n", path, errno); - return 1; + return 0; } }