1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

r419: Data::Dumper is not portable

use it only for debugging in a local tree

metze
(This used to be commit 7c53e05b48)
This commit is contained in:
Stefan Metzmacher 2004-04-30 03:12:14 +00:00 committed by Gerald (Jerry) Carter
parent 405e08683d
commit a37c408fc4

View File

@ -14,7 +14,7 @@ sub pidl($)
$res .= shift;
}
use Data::Dumper;
#use Data::Dumper;
#####################################################################
# produce boilerplate code for a interface
@ -28,7 +28,7 @@ sub Boilerplate_ClientFns($)
if ($d->{TYPE} eq "FUNCTION") {
pidl "/*\n";
pidl Dumper($d);
# pidl Dumper($d);
pidl "\n*/\n\n";
pidl "$d->{RETURN_TYPE} $d->{NAME}(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx";