diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-03-17 12:31:43 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-03-17 12:31:43 +0000 |
commit | a776058900a727591bd7b69debdaa25c0e31d693 (patch) | |
tree | 8d6879eed9d3b6059469dd7a3f70c67b516e0e99 /source/smbd/connection.c | |
parent | 4488d8932fa072bf8a3ae236ab666618051b5e83 (diff) | |
download | samba-a776058900a727591bd7b69debdaa25c0e31d693.tar.gz samba-a776058900a727591bd7b69debdaa25c0e31d693.tar.xz samba-a776058900a727591bd7b69debdaa25c0e31d693.zip |
this isn't a big commit, it just looks like it :-)
I needed the client_name() and client_addr() functions in swat so I
could tell who was connecting from where. The problem was that these
functions didn't take a file descriptor parameter they just used
the global "Client".
So I needed to change all calls to pass a parameter ... lots of files.
Diffstat (limited to 'source/smbd/connection.c')
-rw-r--r-- | source/smbd/connection.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/smbd/connection.c b/source/smbd/connection.c index 610afbc3e55..5cf8b800f2c 100644 --- a/source/smbd/connection.c +++ b/source/smbd/connection.c @@ -115,6 +115,7 @@ simple routines to do connection counting ****************************************************************************/ BOOL claim_connection(int cnum,char *name,int max_connections,BOOL Clear) { + extern int Client; struct connect_record crec; pstring fname; int fd=-1; @@ -200,7 +201,7 @@ BOOL claim_connection(int cnum,char *name,int max_connections,BOOL Clear) crec.start = time(NULL); StrnCpy(crec.machine,remote_machine,sizeof(crec.machine)-1); - StrnCpy(crec.addr,client_addr(),sizeof(crec.addr)-1); + StrnCpy(crec.addr,client_addr(Client),sizeof(crec.addr)-1); /* make our mark */ if (lseek(fd,foundi*sizeof(crec),SEEK_SET) != foundi*sizeof(crec) || |