Use function macro instead of explicit arg cast.
authorTodd Lyons <tlyons@exim.org>
Wed, 19 Jun 2013 21:55:03 +0000 (14:55 -0700)
committerTodd Lyons <tlyons@exim.org>
Wed, 19 Jun 2013 21:55:03 +0000 (14:55 -0700)
src/src/acl.c

index d023b4a8da607223de1c45715f8849ab66f905a5..e3efb7ed873c627b89474a8940ff3dab13824e5b 100644 (file)
@@ -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)