1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r25907: use DEBUGADD() to match samba3

metze
(This used to be commit d2deefb551)
This commit is contained in:
Stefan Metzmacher 2007-11-08 11:35:28 +01:00
parent 92897b1153
commit b5f7841a51

View File

@ -186,10 +186,10 @@ _PUBLIC_ void ndr_print_debug_helper(struct ndr_print *ndr, const char *format,
va_end(ap);
for (i=0;i<ndr->depth;i++) {
DEBUG(0,(" "));
DEBUGADD(0,(" "));
}
DEBUG(0,("%s\n", s));
DEBUGADD(0,("%s\n", s));
free(s);
}