summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-04-30 03:12:14 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:51:37 -0500
commita37c408fc4a1767ea4ca65bc5a575ee905dd5005 (patch)
tree4c4c707334f157ce622f5b9a8eafef1dbc5b96c5
parent405e08683da011411c447fc183a0492576421ede (diff)
downloadsamba-a37c408fc4a1767ea4ca65bc5a575ee905dd5005.tar.gz
samba-a37c408fc4a1767ea4ca65bc5a575ee905dd5005.tar.bz2
samba-a37c408fc4a1767ea4ca65bc5a575ee905dd5005.zip
r419: Data::Dumper is not portable
use it only for debugging in a local tree metze (This used to be commit 7c53e05b4874143e8e8cd0034ab5a6a986e7994c)
-rw-r--r--source4/build/pidl/clientfns.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/build/pidl/clientfns.pm b/source4/build/pidl/clientfns.pm
index 9f5f0ea883..ef107b16f0 100644
--- a/source4/build/pidl/clientfns.pm
+++ b/source4/build/pidl/clientfns.pm
@@ -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";