autoconf should exit with 0 when writing no

This commit is contained in:
Helmut Grohne 2013-02-05 12:50:13 +01:00
parent e2faabaff6
commit 05a642549d
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}