trawick 01/04/30 11:57:52
Modified: dbm apr_dbm.c
Log:
use 0 for FALSE so we compile on Unix
Revision Changes Path
1.21 +1 -1 apr-util/dbm/apr_dbm.c
Index: apr_dbm.c
===================================================================
RCS file: /home/cvs/apr-util/dbm/apr_dbm.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- apr_dbm.c 2001/04/30 17:16:13 1.20
+++ apr_dbm.c 2001/04/30 18:57:49 1.21
@@ -504,7 +504,7 @@
apr_sdbm_datum_t value;
if (apr_sdbm_fetch(dbm->file, &value, *ckey) != APR_SUCCESS) {
apr_sdbm_error_clear(dbm->file); /* don't need the error */
- exists = FALSE;
+ exists = 0;
}
else
exists = value.dptr != NULL;