$NetBSD: patch-aa,v 1.12 2013/05/26 18:37:39 wiz Exp $

fix misuse of "bool", should fix build with some compilers, from
Pouya D. Tafti per pkgsrc-users

--- src/conf.c.orig	2012-08-13 14:55:06.000000000 +0900
+++ src/conf.c
@@ -317,7 +317,7 @@ config_read_block(FILE *fp, int *count, 
 				g_set_error(error_r, config_quark(), 0,
 					    "line %i: Unknown tokens after '}'",
 					    *count);
-				return false;
+				return NULL;
 			}
 
 			return ret;
