summaryrefslogtreecommitdiff
path: root/source4/lib/socket
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-09-25 11:48:30 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:59:14 -0500
commit223e78990a16f134a01d1223a0dad8b2accd5fed (patch)
tree96f634dc3fa74d9b4b6385ab67bbd3741d48bba2 /source4/lib/socket
parentd79c7d41da373dea7f95506c178b18f0dd896043 (diff)
downloadsamba-223e78990a16f134a01d1223a0dad8b2accd5fed.tar.gz
samba-223e78990a16f134a01d1223a0dad8b2accd5fed.tar.bz2
samba-223e78990a16f134a01d1223a0dad8b2accd5fed.zip
r2628: got rid of some warnings and converted a few more places to use hierarchical memory allocation
(This used to be commit 26da45a8019a2d6c9ff2ac2a6739c7d0b42b00de)
Diffstat (limited to 'source4/lib/socket')
-rw-r--r--source4/lib/socket/socket_ipv4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/socket/socket_ipv4.c b/source4/lib/socket/socket_ipv4.c
index 67f1e99d17..c98e5534ca 100644
--- a/source4/lib/socket/socket_ipv4.c
+++ b/source4/lib/socket/socket_ipv4.c
@@ -153,7 +153,7 @@ static NTSTATUS ipv4_tcp_accept(struct socket_context *sock, struct socket_conte
socklen_t cli_addr_len = 0;
int new_fd;
- new_fd = accept(sock->fd, &cli_addr, &cli_addr_len);
+ new_fd = accept(sock->fd, (struct sockaddr *)&cli_addr, &cli_addr_len);
if (new_fd == -1) {
/* TODO: we need to map from errno to NTSTATUS here! */
return NT_STATUS_FOOBAR;