diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-09-10 11:34:32 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-09-10 11:34:32 +0000 |
commit | 12752486db3caad471e9f5094a3b644bbc5882f3 (patch) | |
tree | f636e95486d759b580d99032f15fca71f8db7a7c /source3/nsswitch/winbindd_util.c | |
parent | 11bd06e99c34a1805a3708321997633349e2dae7 (diff) | |
download | samba-12752486db3caad471e9f5094a3b644bbc5882f3.tar.gz samba-12752486db3caad471e9f5094a3b644bbc5882f3.tar.bz2 samba-12752486db3caad471e9f5094a3b644bbc5882f3.zip |
kill a dead fn and make a local one static
(This used to be commit 1e9815105e235ad1141b899b03d3de756d217d49)
Diffstat (limited to 'source3/nsswitch/winbindd_util.c')
-rw-r--r-- | source3/nsswitch/winbindd_util.c | 82 |
1 files changed, 3 insertions, 79 deletions
diff --git a/source3/nsswitch/winbindd_util.c b/source3/nsswitch/winbindd_util.c index aca625fe66..6475d33edd 100644 --- a/source3/nsswitch/winbindd_util.c +++ b/source3/nsswitch/winbindd_util.c @@ -24,6 +24,8 @@ #include "winbindd.h" #include "sids.h" +static void winbindd_kill_connections(struct winbindd_domain *domain); + /* Debug connection state */ void debug_conn_state(void) @@ -221,7 +223,7 @@ BOOL domain_handles_open(struct winbindd_domain *domain) /* Shut down connections to all domain controllers */ -void winbindd_kill_connections(struct winbindd_domain *domain) +static void winbindd_kill_connections(struct winbindd_domain *domain) { /* Kill all connections */ @@ -758,84 +760,6 @@ BOOL winbindd_param_init(void) return True; } -/* Convert a enum winbindd_cmd to a string */ - -struct cmdstr_table { - enum winbindd_cmd cmd; - char *desc; -}; - -static struct cmdstr_table cmdstr_table[] = { - - /* User functions */ - - { WINBINDD_GETPWNAM_FROM_USER, "getpwnam from user" }, - { WINBINDD_GETPWNAM_FROM_UID, "getpwnam from uid" }, - { WINBINDD_SETPWENT, "setpwent" }, - { WINBINDD_ENDPWENT, "endpwent" }, - { WINBINDD_GETPWENT, "getpwent" }, - { WINBINDD_GETGROUPS, "getgroups" }, - - /* Group functions */ - - { WINBINDD_GETGRNAM_FROM_GROUP, "getgrnam from group" }, - { WINBINDD_GETGRNAM_FROM_GID, "getgrnam from gid" }, - { WINBINDD_SETGRENT, "setgrent" }, - { WINBINDD_ENDGRENT, "endgrent" }, - { WINBINDD_GETGRENT, "getgrent" }, - - /* PAM auth functions */ - - { WINBINDD_PAM_AUTH, "pam auth" }, - { WINBINDD_PAM_AUTH_CRAP, "pam auth crap" }, - { WINBINDD_PAM_CHAUTHTOK, "pam chauthtok" }, - - /* List things */ - - { WINBINDD_LIST_USERS, "list users" }, - { WINBINDD_LIST_GROUPS, "list groups" }, - { WINBINDD_LIST_TRUSTDOM, "list trusted domains" }, - - /* SID related functions */ - - { WINBINDD_LOOKUPSID, "lookup sid" }, - { WINBINDD_LOOKUPNAME, "lookup name" }, - - /* S*RS related functions */ - - { WINBINDD_SID_TO_UID, "sid to uid" }, - { WINBINDD_SID_TO_GID, "sid to gid " }, - { WINBINDD_GID_TO_SID, "gid to sid" }, - { WINBINDD_UID_TO_SID, "uid to sid" }, - - /* Miscellaneous other stuff */ - - { WINBINDD_CHECK_MACHACC, "check machine acct pw" }, - - /* End of list */ - - { WINBINDD_NUM_CMDS, NULL } -}; - -char *winbindd_cmd_to_string(enum winbindd_cmd cmd) -{ - struct cmdstr_table *table = cmdstr_table; - char *result = NULL; - - for(table = cmdstr_table; table->desc; table++) { - if (cmd == table->cmd) { - result = table->desc; - break; - } - } - - if (result == NULL) { - result = "invalid command"; - } - - return result; -} - /* find the sequence number for a domain */ uint32 domain_sequence_number(char *domain_name) |