diff options
Diffstat (limited to 'source4/librpc/tables.pl')
-rw-r--r-- | source4/librpc/tables.pl | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/source4/librpc/tables.pl b/source4/librpc/tables.pl index 3dbb58853d..9ad0675cb2 100644 --- a/source4/librpc/tables.pl +++ b/source4/librpc/tables.pl @@ -25,8 +25,6 @@ sub ShowHelp() Usage: tables.pl [options] <idlfile> - Options: - --output OUTNAME put output in OUTNAME.* \n"; exit(0); } @@ -61,16 +59,13 @@ sub process_file($) } if ($found) { - print TABLEC "#include \"$filename\"\n"; + print "#include \"$filename\"\n"; } close(FILE); } -print "Creating $opt_output\n"; -open(TABLEC, ">$opt_output") || die "failed to open $opt_output\n"; - -print TABLEC <<EOF; +print <<EOF; /* Automatically generated by tables.pl. DO NOT EDIT */ @@ -81,7 +76,7 @@ EOF process_file($_) foreach (@ARGV); -print TABLEC <<EOF; +print <<EOF; NTSTATUS dcerpc_register_builtin_interfaces(void) { @@ -92,5 +87,3 @@ $init_fns return NT_STATUS_OK; } EOF - -close(TABLEC); |