summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Lyons <tlyons@exim.org>2013-06-19 14:55:03 -0700
committerTodd Lyons <tlyons@exim.org>2013-06-19 14:55:03 -0700
commit27f9999e2828002705cabd10ef62ce86378287e3 (patch)
treef806c81d451c4e6d89eca1033a989dfdacd86381
parent217b0e56836c28c897e16b7633aeba158b0ef906 (diff)
Use function macro instead of explicit arg cast.
-rw-r--r--src/src/acl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/acl.c b/src/src/acl.c
index d023b4a8d..e3efb7ed8 100644
--- a/src/src/acl.c
+++ b/src/src/acl.c
@@ -2900,7 +2900,7 @@ r = s = ip_socket(SOCK_DGRAM, host_af);
if (r < 0) goto defer;
r = ip_connect(s, host_af, h->address, portnum, 1);
if (r < 0) goto defer;
-len = strlen(CCS arg);
+len = Ustrlen(arg);
r = send(s, arg, len, MSG_NOSIGNAL);
if (r < 0) goto defer;
if (r < len)