diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-06-25 02:53:13 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-06-25 02:53:13 +0000 |
commit | e2ecff419fdc0a0dc7551b33b377dc11061ef2a3 (patch) | |
tree | 1a104ddda89594d444b07fd8115686ba862702e6 /source/nsswitch/winbindd.c | |
parent | 72f63f5144ececdef31c659ab645eb71a88943b5 (diff) | |
download | samba-e2ecff419fdc0a0dc7551b33b377dc11061ef2a3.tar.gz samba-e2ecff419fdc0a0dc7551b33b377dc11061ef2a3.tar.xz samba-e2ecff419fdc0a0dc7551b33b377dc11061ef2a3.zip |
fixed usage of socklen_t and also tidied up SIG_ATOMIC_T, using a typedef instead of a define
Diffstat (limited to 'source/nsswitch/winbindd.c')
-rw-r--r-- | source/nsswitch/winbindd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/nsswitch/winbindd.c b/source/nsswitch/winbindd.c index 9dd995b4aee..305c18a8c04 100644 --- a/source/nsswitch/winbindd.c +++ b/source/nsswitch/winbindd.c @@ -310,7 +310,8 @@ static void new_connection(int accept_sock) { struct sockaddr_un sunaddr; struct winbindd_cli_state *state; - int len, sock; + socklen_t len; + int sock; /* Accept connection */ |