summaryrefslogtreecommitdiff
path: root/source4/lib/samba3/smbpasswd.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/samba3/smbpasswd.c')
-rw-r--r--source4/lib/samba3/smbpasswd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/samba3/smbpasswd.c b/source4/lib/samba3/smbpasswd.c
index b7961cde11..39e2448b98 100644
--- a/source4/lib/samba3/smbpasswd.c
+++ b/source4/lib/samba3/smbpasswd.c
@@ -118,7 +118,7 @@ char *smbpasswd_sethexpwd(TALLOC_CTX *mem_ctx, struct samr_Password *pwd, uint16
uint16_t smbpasswd_decode_acb_info(const char *p)
{
uint16_t acb_info = 0;
- BOOL finished = False;
+ bool finished = false;
/*
* Check if the account type bits have been encoded after the
@@ -170,7 +170,7 @@ uint16_t smbpasswd_decode_acb_info(const char *p)
case '\n':
case ']':
default:
- finished = True;
+ finished = true;
break;
}
}