summaryrefslogtreecommitdiffstats
path: root/src/ccapi/server/ccs_cache_collection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ccapi/server/ccs_cache_collection.c')
-rw-r--r--src/ccapi/server/ccs_cache_collection.c5
1 files changed, 3 insertions, 2 deletions
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) {