From 61ffa08f4c95e29d301de9fbabd6e71c2dbc1056 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 27 Aug 2007 18:10:19 +0000 Subject: r24712: No longer expose the 'BOOL' data type in any interfaces. (This used to be commit 1ce32673d960c8b05b6c1b1b99e1976a402417ae) --- source4/auth/credentials/credentials.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/auth/credentials') diff --git a/source4/auth/credentials/credentials.h b/source4/auth/credentials/credentials.h index ca034a8504..1cecb97055 100644 --- a/source4/auth/credentials/credentials.h +++ b/source4/auth/credentials/credentials.h @@ -104,10 +104,10 @@ struct cli_credentials { /* We are flagged to get machine account details from the * secrets.ldb when we are asked for a username or password */ - BOOL machine_account_pending; + bool machine_account_pending; /* Is this a machine account? */ - BOOL machine_account; + bool machine_account; /* Should we be trying to use kerberos? */ enum credentials_use_kerberos use_kerberos; @@ -119,7 +119,7 @@ struct cli_credentials { int tries; /* Whether any callback is currently running */ - BOOL callback_running; + bool callback_running; /* an event context for anyone wanting to use the credentials */ struct event_context *ev; -- cgit