diff options
author | Andrew Bartlett <abartlet@samba.org> | 2016-11-21 11:21:50 +1300 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2016-12-08 13:25:57 +0100 |
commit | 50dff7e094d48793b432992a28571a6f7e5cc73c (patch) | |
tree | c385778b3460c97a9a151f35e7467b41f718704d /pidl | |
parent | 0e2f03f9bd1cf91aa09e528d1a02c88262fdb2a9 (diff) | |
download | samba-50dff7e094d48793b432992a28571a6f7e5cc73c.tar.gz |
pidl: Make dcesrv\_$name\_interface "static const"
This moves it out of the global namespace
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Autobuild-User(master): Stefan Metzmacher <metze@samba.org>
Autobuild-Date(master): Thu Dec 8 13:25:57 CET 2016 on sn-devel-144
Diffstat (limited to 'pidl')
-rw-r--r-- | pidl/lib/Parse/Pidl/Samba4/NDR/Server.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba4/NDR/Server.pm b/pidl/lib/Parse/Pidl/Samba4/NDR/Server.pm index 70778640f04..7ca18a8483c 100644 --- a/pidl/lib/Parse/Pidl/Samba4/NDR/Server.pm +++ b/pidl/lib/Parse/Pidl/Samba4/NDR/Server.pm @@ -192,7 +192,7 @@ static NTSTATUS $name\__op_ndr_push(struct dcesrv_call_state *dce_call, TALLOC_C return NT_STATUS_OK; } -const struct dcesrv_interface dcesrv\_$name\_interface = { +static const struct dcesrv_interface dcesrv\_$name\_interface = { .name = \"$name\", .syntax_id = {".print_uuid($uuid).",$if_version}, .bind = $name\__op_bind, |