summaryrefslogtreecommitdiff
path: root/source3/smbd/connection.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-11-03 18:41:26 -0700
committerJeremy Allison <jra@samba.org>2007-11-03 18:41:26 -0700
commit25074433f412c4dd2531fd268d51be8753ddc11b (patch)
tree2c18dde9c017a675f2ea75e76ae773bb9057ded5 /source3/smbd/connection.c
parent6658165d5e9cd186fea74e1581091233e8990e9b (diff)
downloadsamba-25074433f412c4dd2531fd268d51be8753ddc11b.tar.gz
samba-25074433f412c4dd2531fd268d51be8753ddc11b.tar.bz2
samba-25074433f412c4dd2531fd268d51be8753ddc11b.zip
I can't get away without a 'length' arg. :-).
Jeremy. (This used to be commit 95d01279a5def709d0a5d5ae7224d6286006d120)
Diffstat (limited to 'source3/smbd/connection.c')
-rw-r--r--source3/smbd/connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/connection.c b/source3/smbd/connection.c
index 4b89668640..f041513820 100644
--- a/source3/smbd/connection.c
+++ b/source3/smbd/connection.c
@@ -152,7 +152,7 @@ bool claim_connection(connection_struct *conn, const char *name,
crec.bcast_msg_flags = msg_flags;
strlcpy(crec.machine,get_remote_machine_name(),sizeof(crec.machine));
- strlcpy(crec.addr,conn?conn->client_address:client_addr(addr),
+ strlcpy(crec.addr,conn?conn->client_address:client_addr(addr,sizeof(addr)),
sizeof(crec.addr));
dbuf.dptr = (uint8 *)&crec;