From 3642f3b40d755209a843745f160a9d7962a6deca Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 6 Oct 2007 22:16:19 +0000 Subject: r25552: Convert to standard bool type. (This used to be commit b8d6b82f1248d36a0aa91a1c58d06b4f7c66d245) --- source4/auth/auth_unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/auth/auth_unix.c') diff --git a/source4/auth/auth_unix.c b/source4/auth/auth_unix.c index faec834d95..b5abaa2980 100644 --- a/source4/auth/auth_unix.c +++ b/source4/auth/auth_unix.c @@ -53,7 +53,7 @@ static NTSTATUS authunix_make_server_info(TALLOC_CTX *mem_ctx, server_info = talloc(mem_ctx, struct auth_serversupplied_info); NT_STATUS_HAVE_NO_MEMORY(server_info); - server_info->authenticated = True; + server_info->authenticated = true; server_info->account_name = talloc_steal(server_info, pwd->pw_name); NT_STATUS_HAVE_NO_MEMORY(server_info->account_name); -- cgit