diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-05-07 17:11:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:16:54 -0500 |
commit | 194a523ab898b6368801ee7b1ac43598c05b7ec8 (patch) | |
tree | b094e6a29db41a422c9156d4d6eceea45a57298c /source3/lib | |
parent | 60493551d1fe928b6d4c8a25dc642a70d01bc7d5 (diff) | |
download | samba-194a523ab898b6368801ee7b1ac43598c05b7ec8.tar.gz samba-194a523ab898b6368801ee7b1ac43598c05b7ec8.tar.bz2 samba-194a523ab898b6368801ee7b1ac43598c05b7ec8.zip |
r15494: Fix debug statement
(This used to be commit 8cdfe404ef095901bf1d87fb80b3252eca49c8df)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/substitute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/substitute.c b/source3/lib/substitute.c index bfe7dc814c..ff9deb8a5f 100644 --- a/source3/lib/substitute.c +++ b/source3/lib/substitute.c @@ -687,7 +687,7 @@ char *alloc_sub_advanced(int snum, const char *user, a_string = SMB_STRDUP(str); if (a_string == NULL) { - DEBUG(0, ("alloc_sub_specified: Out of memory!\n")); + DEBUG(0, ("alloc_sub_advanced: Out of memory!\n")); return NULL; } |