From ffef23d40f100ba678bc2af73eb24bc6fc93356e Mon Sep 17 00:00:00 2001 From: Christian Ambach Date: Fri, 15 Jul 2011 15:35:18 +0200 Subject: s3:lib/afs use stdbool types --- source3/lib/afs.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3/lib/afs.c') diff --git a/source3/lib/afs.c b/source3/lib/afs.c index 2ee1747a77..849e9ce55d 100644 --- a/source3/lib/afs.c +++ b/source3/lib/afs.c @@ -93,11 +93,11 @@ static bool afs_createtoken(const char *username, const char *cell, des_key_schedule key_schedule; if (!secrets_init()) - return False; + return false; if (!secrets_fetch_afs_key(cell, &key)) { DEBUG(1, ("Could not fetch AFS service key\n")); - return False; + return false; } ct->AuthHandle = key.kvno; @@ -184,7 +184,7 @@ static bool afs_createtoken(const char *username, const char *cell, *ticket = data_blob(clear_ticket, len); - return True; + return true; } char *afs_createtoken_str(const char *username, const char *cell) @@ -276,7 +276,7 @@ bool afs_login(connection_struct *conn) afs_username, cell)); if (!afs_createtoken(afs_username, cell, &ticket, &ct)) - return False; + return false; /* For which Unix-UID do we want to set the token? */ ct.ViceId = getuid(); @@ -296,7 +296,7 @@ bool afs_login(connection_struct *conn) bool afs_login(connection_struct *conn) { - return True; + return true; } char *afs_createtoken_str(const char *username, const char *cell) -- cgit