diff options
author | Jeremy Allison <jra@samba.org> | 2007-11-03 23:20:10 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-11-03 23:20:10 -0700 |
commit | 5b0b4f23ef5fec3d1ad518237f973d4e014b5766 (patch) | |
tree | f75cdfaef81e5fcc0cf7061e0141b97831508ee1 /source3/auth/pampass.c | |
parent | 51a0354d751f48a2542984c81e218da33669bbeb (diff) | |
download | samba-5b0b4f23ef5fec3d1ad518237f973d4e014b5766.tar.gz |
Remove most of the remaining globals out of lib/util_sock.c.
I have a plan for dealing with the remaining..... Watch
this space.
Jeremy.
(This used to be commit 963fc7685212689f02b3adcc05b4273ee5c382d4)
Diffstat (limited to 'source3/auth/pampass.c')
-rw-r--r-- | source3/auth/pampass.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/auth/pampass.c b/source3/auth/pampass.c index c7ec79b9694..739e0a78fdf 100644 --- a/source3/auth/pampass.c +++ b/source3/auth/pampass.c @@ -468,9 +468,9 @@ static bool smb_pam_start(pam_handle_t **pamh, const char *user, const char *rho } if (rhost == NULL) { - our_rhost = client_name(); + our_rhost = client_name(get_client_fd()); if (strequal(our_rhost,"UNKNOWN")) - our_rhost = client_addr(addr,sizeof(addr)); + our_rhost = client_addr(get_client_fd(),addr,sizeof(addr)); } else { our_rhost = rhost; } |