summaryrefslogtreecommitdiffstats
path: root/source/lib
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2006-09-19 00:55:40 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:52:20 -0500
commit6004b8025de3207f5af2d62087ec13c5e444fec7 (patch)
treeb1286484840ad22a4d556d07cf8357a8e54c970e /source/lib
parentf8ea2069d444a6630b61828999605a3ed011db02 (diff)
downloadsamba-6004b8025de3207f5af2d62087ec13c5e444fec7.tar.gz
samba-6004b8025de3207f5af2d62087ec13c5e444fec7.tar.xz
samba-6004b8025de3207f5af2d62087ec13c5e444fec7.zip
r18661: C++ warnings
Diffstat (limited to 'source/lib')
-rw-r--r--source/lib/socket_wrapper/socket_wrapper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/lib/socket_wrapper/socket_wrapper.c b/source/lib/socket_wrapper/socket_wrapper.c
index 5417f70a068..331e23aa48b 100644
--- a/source/lib/socket_wrapper/socket_wrapper.c
+++ b/source/lib/socket_wrapper/socket_wrapper.c
@@ -473,7 +473,7 @@ _PUBLIC_ int swrap_socket(int family, int type, int protocol)
if (fd == -1) return -1;
- si = calloc(1, sizeof(struct socket_info));
+ si = (struct socket_info *)calloc(1, sizeof(struct socket_info));
si->family = family;
si->type = type;
@@ -518,7 +518,7 @@ _PUBLIC_ int swrap_accept(int s, struct sockaddr *addr, socklen_t *addrlen)
return ret;
}
- child_si = malloc(sizeof(struct socket_info));
+ child_si = (struct socket_info *)malloc(sizeof(struct socket_info));
memset(child_si, 0, sizeof(*child_si));
child_si->fd = fd;