From d6a514d8e7bae6baaac8e3ab0c7739f94e314faf Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Thu, 1 Nov 2007 08:18:23 +0000 Subject: Use 0 and 1 instead of relying on TRUE/FALSE being defined everywhere git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20162 dc483132-0cff-0310-8789-dd5450dbe970 --- src/ccapi/server/ccs_cache_collection.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/ccapi/server') diff --git a/src/ccapi/server/ccs_cache_collection.c b/src/ccapi/server/ccs_cache_collection.c index df21ccb506..2500c29749 100644 --- a/src/ccapi/server/ccs_cache_collection.c +++ b/src/ccapi/server/ccs_cache_collection.c @@ -24,6 +24,7 @@ * or implied warranty. */ +#include "k5-platform.h" /* pull in asprintf decl/defn */ #include "ccs_common.h" struct ccs_cache_collection_d { @@ -518,7 +519,7 @@ cc_int32 ccs_cache_collection_set_default_ccache (ccs_cache_collection_t io_cac if (!err) { err = ccs_ccache_notify_default_state_changed (old_default, io_cache_collection, - FALSE /* no longer default */); + 0 /* no longer default */); } if (!err) { @@ -529,7 +530,7 @@ cc_int32 ccs_cache_collection_set_default_ccache (ccs_cache_collection_t io_cac if (!err) { err = ccs_ccache_notify_default_state_changed (new_default, io_cache_collection, - TRUE /* now default */); + 1 /* now default */); } if (!err) { -- cgit