From 58db720e27d4b0c580fb4d3e036d823bc5d3a141 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 5 May 2011 00:03:48 +0200 Subject: s3-auth: run minimal_includes.pl Guenther --- source3/auth/auth_unix.c | 1 - 1 file changed, 1 deletion(-) (limited to 'source3/auth/auth_unix.c') diff --git a/source3/auth/auth_unix.c b/source3/auth/auth_unix.c index 8f9eacf76b..086c39e026 100644 --- a/source3/auth/auth_unix.c +++ b/source3/auth/auth_unix.c @@ -20,7 +20,6 @@ #include "includes.h" #include "auth.h" #include "system/passwd.h" -#include "../librpc/gen_ndr/samr.h" #include "smbd/globals.h" #undef DBGC_CLASS -- cgit From ad0a07c531fadd1639c5298951cfaf5cfe0cb10e Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 7 Jun 2011 11:44:43 +1000 Subject: s3-talloc Change TALLOC_ZERO_P() to talloc_zero() Using the standard macro makes it easier to move code into common, as TALLOC_ZERO_P isn't standard talloc. --- source3/auth/auth_unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/auth/auth_unix.c') diff --git a/source3/auth/auth_unix.c b/source3/auth/auth_unix.c index 086c39e026..36956986c5 100644 --- a/source3/auth/auth_unix.c +++ b/source3/auth/auth_unix.c @@ -73,7 +73,7 @@ static NTSTATUS auth_init_unix(struct auth_context *auth_context, const char* pa { struct auth_methods *result; - result = TALLOC_ZERO_P(auth_context, struct auth_methods); + result = talloc_zero(auth_context, struct auth_methods); if (result == NULL) { return NT_STATUS_NO_MEMORY; } -- cgit