From: Volker Lendecke Date: Tue, 15 Aug 2017 03:58:05 +0000 (+0200) Subject: nfs4acls: Fix a debug message X-Git-Tag: tevent-0.9.34~113 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5c520f79a68a1e68cbd0fe48287c106d0967af0c;p=thirdparty%2Fsamba.git nfs4acls: Fix a debug message Signed-off-by: Volker Lendecke Reviewed-by: Ralph Boehme --- diff --git a/source3/modules/nfs4_acls.c b/source3/modules/nfs4_acls.c index b755344322e..538517f4a3c 100644 --- a/source3/modules/nfs4_acls.c +++ b/source3/modules/nfs4_acls.c @@ -180,7 +180,7 @@ struct SMB4ACE_T *smb_add_ace4(struct SMB4ACL_T *acl, SMB_ACE4PROP_T *prop) ace = talloc_zero(acl, struct SMB4ACE_T); if (ace==NULL) { - DEBUG(0, ("TALLOC_SIZE failed\n")); + DBG_ERR("talloc_zero failed\n"); errno = ENOMEM; return NULL; }