summaryrefslogtreecommitdiffstats
path: root/source/auth
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2006-07-02 22:04:29 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:19:10 -0500
commit03c665c307e518c9ff66096904873266b145637c (patch)
treeb13bc64e237c3de09768d99722ced2fda9b43bd7 /source/auth
parent6fa928f96a70b7b063dd1bdbb08c6a3f5d942229 (diff)
downloadsamba-03c665c307e518c9ff66096904873266b145637c.tar.gz
samba-03c665c307e518c9ff66096904873266b145637c.tar.xz
samba-03c665c307e518c9ff66096904873266b145637c.zip
r16766: A warning found by RHEL3. This might actually be 3.0.23 code, maybe there are
vasprintf implementations that don't like a NULL format. Volker
Diffstat (limited to 'source/auth')
-rw-r--r--source/auth/auth_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/auth/auth_util.c b/source/auth/auth_util.c
index df4a4e1b388..c5ce55bc8c1 100644
--- a/source/auth/auth_util.c
+++ b/source/auth/auth_util.c
@@ -778,7 +778,7 @@ static NTSTATUS create_builtin_administrators( void )
}
/* add root */
- if ( (ctx = talloc_init(NULL)) == NULL ) {
+ if ( (ctx = talloc_init("create_builtin_administrators")) == NULL ) {
return NT_STATUS_NO_MEMORY;
}
fstr_sprintf( root_name, "%s\\root", get_global_sam_name() );