diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-04-06 00:42:27 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-04-06 00:42:27 +0200 |
commit | f5e6534ee7934c12eb19dca307f1732d73c86ec5 (patch) | |
tree | 3464c05be181eceb82bb55fff9533daeed0164a7 /source4 | |
parent | faa3dec34a67b59fc7e733a2ce3a9d9f2cb34b2d (diff) | |
download | samba-f5e6534ee7934c12eb19dca307f1732d73c86ec5.tar.gz samba-f5e6534ee7934c12eb19dca307f1732d73c86ec5.tar.bz2 samba-f5e6534ee7934c12eb19dca307f1732d73c86ec5.zip |
Fix authservice count.
(This used to be commit 761536a5e4dd3dbfacf1576d7092827cdeda897b)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm b/source4/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm index a959dc84f6..9fb5a6a597 100644 --- a/source4/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm @@ -2248,7 +2248,7 @@ sub FunctionTable($$) $self->pidl(""); $self->pidl("static const struct ndr_interface_string_array $interface->{NAME}\_authservices = {"); - $self->pidl("\t.count\t= $endpoint_count,"); + $self->pidl("\t.count\t= $authservice_count,"); $self->pidl("\t.names\t= $interface->{NAME}\_authservice_strings"); $self->pidl("};"); $self->pidl(""); |