diff options
author | Jeremy Allison <jra@samba.org> | 2001-11-15 19:40:00 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-11-15 19:40:00 +0000 |
commit | 5e8df83ba9924adf9df6827c06ed1a2adbe36edf (patch) | |
tree | 9bc18b21e36d3d9d331ca8268b7ba9dccaa6966a /source/nsswitch/winbindd.c | |
parent | 77c287e9460eed7bde7004c7e6c8cb0099c6ba6f (diff) | |
download | samba-5e8df83ba9924adf9df6827c06ed1a2adbe36edf.tar.gz samba-5e8df83ba9924adf9df6827c06ed1a2adbe36edf.tar.xz samba-5e8df83ba9924adf9df6827c06ed1a2adbe36edf.zip |
Tidyup formatting a bit (spaces->tabs) whilst reading new code to understand
connection caching. Getting ready for back-merge to 2.2.3.
Jeremy.
Diffstat (limited to 'source/nsswitch/winbindd.c')
-rw-r--r-- | source/nsswitch/winbindd.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/source/nsswitch/winbindd.c b/source/nsswitch/winbindd.c index c6a2f803364..30e5f41b9eb 100644 --- a/source/nsswitch/winbindd.c +++ b/source/nsswitch/winbindd.c @@ -255,8 +255,8 @@ static struct dispatch_table dispatch_table[] = { /* Enumeration functions */ - { WINBINDD_LIST_USERS, winbindd_list_users, "LIST_USERS" }, - { WINBINDD_LIST_GROUPS, winbindd_list_groups, "LIST_GROUPS" }, + { WINBINDD_LIST_USERS, winbindd_list_users, "LIST_USERS" }, + { WINBINDD_LIST_GROUPS, winbindd_list_groups, "LIST_GROUPS" }, { WINBINDD_LIST_TRUSTDOM, winbindd_list_trusted_domains, "LIST_TRUSTDOM" }, /* SID related functions */ @@ -264,7 +264,7 @@ static struct dispatch_table dispatch_table[] = { { WINBINDD_LOOKUPSID, winbindd_lookupsid, "LOOKUPSID" }, { WINBINDD_LOOKUPNAME, winbindd_lookupname, "LOOKUPNAME" }, - /* S*RS related functions */ + /* Lookup related functions */ { WINBINDD_SID_TO_UID, winbindd_sid_to_uid, "SID_TO_UID" }, { WINBINDD_SID_TO_GID, winbindd_sid_to_gid, "SID_TO_GID" }, @@ -657,14 +657,12 @@ static void process_loop(int accept_sock) flush_caches(); reload_services_file(True); - do_sighup = False; } if (do_sigusr1) { print_winbindd_status(); - - do_sigusr1 = False; + do_sigusr1 = False; } } } |