diff options
author | Volker Lendecke <vl@samba.org> | 2010-08-28 14:13:54 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-08-28 14:14:36 +0200 |
commit | 460597dea16f2b5f8a4f9c6cf54b8c26bf94ed6d (patch) | |
tree | 2d8162f0b4ca4bffec758efe6c056463ace3e5ba /source3/lib/util.c | |
parent | 755ef5cf1159f4af40e763ab797be8fcaa0c6d37 (diff) | |
download | samba-460597dea16f2b5f8a4f9c6cf54b8c26bf94ed6d.tar.gz samba-460597dea16f2b5f8a4f9c6cf54b8c26bf94ed6d.tar.bz2 samba-460597dea16f2b5f8a4f9c6cf54b8c26bf94ed6d.zip |
s3: Fix some DEBUGs
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r-- | source3/lib/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 8bea36b870..644f1830c6 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -222,13 +222,13 @@ bool init_names(void) if (global_myname() == NULL || *global_myname() == '\0') { if (!set_global_myname(myhostname())) { - DEBUG( 0, ( "init_structs: malloc fail.\n" ) ); + DEBUG( 0, ( "init_names: malloc fail.\n" ) ); return False; } } if (!set_netbios_aliases(lp_netbios_aliases())) { - DEBUG( 0, ( "init_structs: malloc fail.\n" ) ); + DEBUG( 0, ( "init_names: malloc fail.\n" ) ); return False; } |