Index: trunk/mod_cacher/xc_cacher.c
===================================================================
--- trunk/mod_cacher/xc_cacher.c	(revision 1186)
+++ trunk/mod_cacher/xc_cacher.c	(revision 1187)
@@ -224,5 +224,5 @@
 /* }}} */
 
-static inline int xc_entry_equal_unlocked(xc_entry_type_t type, const xc_entry_t *entry1, const xc_entry_t *entry2 TSRMLS_DC) /* {{{ */
+static inline zend_bool xc_entry_equal_unlocked(xc_entry_type_t type, const xc_entry_t *entry1, const xc_entry_t *entry2 TSRMLS_DC) /* {{{ */
 {
 	/* this function isn't required but can be in unlocked */
@@ -2204,5 +2204,5 @@
 
 /* gdb helper functions, but N/A for coredump */
-int xc_is_rw(const void *p) /* {{{ */
+zend_bool xc_is_rw(const void *p) /* {{{ */
 {
 	xc_shm_t *shm;
@@ -2229,5 +2229,5 @@
 }
 /* }}} */
-int xc_is_ro(const void *p) /* {{{ */
+zend_bool xc_is_ro(const void *p) /* {{{ */
 {
 	xc_shm_t *shm;
@@ -2560,5 +2560,5 @@
 	}
 
-static inline int xc_var_has_prefix(xc_entry_t *entry, zval *prefix TSRMLS_DC) /* {{{ */
+static inline zend_bool xc_var_has_prefix(xc_entry_t *entry, zval *prefix TSRMLS_DC) /* {{{ */
 {
 	zend_bool result = 0;
@@ -2593,5 +2593,5 @@
 	zend_register_long_constant(ZEND_STRS("XC_TYPE_PHP"), XC_TYPE_PHP, CONST_CS | CONST_PERSISTENT, module_number TSRMLS_CC);
 	zend_register_long_constant(ZEND_STRS("XC_TYPE_VAR"), XC_TYPE_VAR, CONST_CS | CONST_PERSISTENT, module_number TSRMLS_CC);
-	return 0;
+	return SUCCESS;
 }
 /* }}} */
@@ -2737,5 +2737,5 @@
 		shm = NULL;
 	}
-	return 0;
+	return FAILURE;
 }
 /* }}} */
@@ -2809,5 +2809,5 @@
 
 /* user functions */
-static int xcache_admin_auth_check(TSRMLS_D) /* {{{ */
+static zend_bool xcache_admin_auth_check(TSRMLS_D) /* {{{ */
 {
 	zval **server = NULL;
