diff options
author | Jeremy Allison <jra@samba.org> | 2005-10-10 20:05:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:39:39 -0500 |
commit | d2376d70b280a0642ecac23cfc526b76819d6bb1 (patch) | |
tree | db49994775922448fb334b2f90f22004d006cbae /source4/pidl/lib/Parse/Pidl/Samba3/Server.pm | |
parent | 399533dc6465e9010e3d6ef06e54e138513f12c5 (diff) | |
download | samba-d2376d70b280a0642ecac23cfc526b76819d6bb1.tar.gz samba-d2376d70b280a0642ecac23cfc526b76819d6bb1.tar.bz2 samba-d2376d70b280a0642ecac23cfc526b76819d6bb1.zip |
r10880: Missed terminating ';', sorry.
Jeremy.
(This used to be commit 2680aeffb1e40a7d1d59c98f0ee533d7c4362f40)
Diffstat (limited to 'source4/pidl/lib/Parse/Pidl/Samba3/Server.pm')
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba3/Server.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/Samba3/Server.pm b/source4/pidl/lib/Parse/Pidl/Samba3/Server.pm index b4eb6329eb..179ace7dbb 100644 --- a/source4/pidl/lib/Parse/Pidl/Samba3/Server.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba3/Server.pm @@ -36,8 +36,8 @@ sub ParseFunction($$) pidl "prs_struct *data = &p->in_data.data;"; pidl "prs_struct *rdata = &p->out_data.rdata;"; pidl ""; - pidl "ZERO_STRUCT(q_u);" - pidl "ZERO_STRUCT(r_u);" + pidl "ZERO_STRUCT(q_u);"; + pidl "ZERO_STRUCT(r_u);"; pidl ""; pidl "if (!$if->{NAME}_io_q_$fn->{NAME}(\"\", &q_u, data, 0))"; pidl "\treturn False;"; |