s3:lib/afs use stdbool types
authorChristian Ambach <ambi@samba.org>
Fri, 15 Jul 2011 13:35:18 +0000 (15:35 +0200)
committerChristian Ambach <ambi@samba.org>
Thu, 21 Jul 2011 12:55:06 +0000 (14:55 +0200)
source3/lib/afs.c
source3/lib/afs_settoken.c

index 2ee1747a7794ade975bb532a8be69b0bf330686f..849e9ce55d1f77a7ea959bc250451a0984646661 100644 (file)
@@ -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)
index 971c145cde602e097a5ce35f92713b6a330eb4c1..c83093ff451fb6e3f6ab9a3e284c435f473c88c9 100644 (file)
@@ -82,24 +82,24 @@ static bool afs_decode_token(const char *string, char **cell,
 
        if ((t = strtok_r(s, "\n", &saveptr)) == NULL) {
                DEBUG(10, ("strtok_r failed\n"));
-               return False;
+               return false;
        }
 
        *cell = SMB_STRDUP(t);
 
        if ((t = strtok_r(NULL, "\n", &saveptr)) == NULL) {
                DEBUG(10, ("strtok_r failed\n"));
-               return False;
+               return false;
        }
 
        if (sscanf(t, "%u", &result_ct.AuthHandle) != 1) {
                DEBUG(10, ("sscanf AuthHandle failed\n"));
-               return False;
+               return false;
        }
                
        if ((t = strtok_r(NULL, "\n", &saveptr)) == NULL) {
                DEBUG(10, ("strtok_r failed\n"));
-               return False;
+               return false;
        }
 
        blob = base64_decode_data_blob(t);
@@ -108,7 +108,7 @@ static bool afs_decode_token(const char *string, char **cell,
             (blob.length != sizeof(result_ct.HandShakeKey) )) {
                DEBUG(10, ("invalid key: %x/%lu\n", (uint8_t)*blob.data,
                           (unsigned long) blob.length));
-               return False;
+               return false;
        }
 
        memcpy(result_ct.HandShakeKey, blob.data, blob.length);
@@ -117,50 +117,50 @@ static bool afs_decode_token(const char *string, char **cell,
 
        if ((t = strtok_r(NULL, "\n", &saveptr)) == NULL) {
                DEBUG(10, ("strtok_r failed\n"));
-               return False;
+               return false;
        }
 
        if (sscanf(t, "%u", &result_ct.ViceId) != 1) {
                DEBUG(10, ("sscanf ViceId failed\n"));
-               return False;
+               return false;
        }
                
        if ((t = strtok_r(NULL, "\n", &saveptr)) == NULL) {
                DEBUG(10, ("strtok_r failed\n"));
-               return False;
+               return false;
        }
 
        if (sscanf(t, "%u", &result_ct.BeginTimestamp) != 1) {
                DEBUG(10, ("sscanf BeginTimestamp failed\n"));
-               return False;
+               return false;
        }
                
        if ((t = strtok_r(NULL, "\n", &saveptr)) == NULL) {
                DEBUG(10, ("strtok_r failed\n"));
-               return False;
+               return false;
        }
 
        if (sscanf(t, "%u", &result_ct.EndTimestamp) != 1) {
                DEBUG(10, ("sscanf EndTimestamp failed\n"));
-               return False;
+               return false;
        }
                
        if ((t = strtok_r(NULL, "\n", &saveptr)) == NULL) {
                DEBUG(10, ("strtok_r failed\n"));
-               return False;
+               return false;
        }
 
        blob = base64_decode_data_blob(t);
 
        if (blob.data == NULL) {
                DEBUG(10, ("Could not get ticket\n"));
-               return False;
+               return false;
        }
 
        *ticket = blob;
        *ct = result_ct;
 
-       return True;
+       return true;
 }
 
 /*
@@ -206,7 +206,7 @@ static bool afs_settoken(const char *cell,
        tmp = strlen(cell);
        if (tmp >= MAXKTCREALMLEN) {
                DEBUG(1, ("Realm too long\n"));
-               return False;
+               return false;
        }
 
        strncpy(p, cell, tmp);
@@ -237,7 +237,7 @@ bool afs_settoken_str(const char *token_string)
        char *cell;
 
        if (!afs_decode_token(token_string, &cell, &ticket, &ct))
-               return False;
+               return false;
 
        if (geteuid() != sec_initial_uid())
                ct.ViceId = getuid();
@@ -254,7 +254,7 @@ bool afs_settoken_str(const char *token_string)
 
 bool afs_settoken_str(const char *token_string)
 {
-       return False;
+       return false;
 }
 
 #endif