diff options
author | Stefan Metzmacher <metze@sernet.de> | 2007-12-07 16:00:45 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-11 12:56:24 +0100 |
commit | 35608af51d4f01c5fe4ed1d91c9261dcaa49f4af (patch) | |
tree | 78aabcabf202b44be2fb19f72c3e162a44b8a3ba /source3/winbindd/winbindd.h | |
parent | 92482e5667c9bc5ea99f4ffd1b6eab2847a6805a (diff) | |
download | samba-35608af51d4f01c5fe4ed1d91c9261dcaa49f4af.tar.gz samba-35608af51d4f01c5fe4ed1d91c9261dcaa49f4af.tar.xz samba-35608af51d4f01c5fe4ed1d91c9261dcaa49f4af.zip |
winbindd: rename child table struct elements
Add struct_ prefix to struct based protocol specific
elemetens struct winbindd_child_dispatch_table.
metze
(This used to be commit 4ab9a8aab72a8406659a72e87b2d2a1ec2a2eabf)
Diffstat (limited to 'source3/winbindd/winbindd.h')
-rw-r--r-- | source3/winbindd/winbindd.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/winbindd/winbindd.h b/source3/winbindd/winbindd.h index 248bcff92b9..d76e9b59219 100644 --- a/source3/winbindd/winbindd.h +++ b/source3/winbindd/winbindd.h @@ -137,10 +137,10 @@ struct winbindd_async_request; struct winbindd_domain; struct winbindd_child_dispatch_table { - enum winbindd_cmd cmd; - enum winbindd_result (*fn)(struct winbindd_domain *domain, - struct winbindd_cli_state *state); - const char *winbindd_cmd_name; + const char *name; + enum winbindd_cmd struct_cmd; + enum winbindd_result (*struct_fn)(struct winbindd_domain *domain, + struct winbindd_cli_state *state); }; extern const struct winbindd_child_dispatch_table domain_dispatch_table[]; |