From: Günther Deschner Date: Thu, 10 Feb 2011 13:20:34 +0000 (+0100) Subject: socket_wrapper: avoid c++ style comments. X-Git-Tag: tevent-0.9.11~758 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2f6d76a95fea8aa1696c039516818d9e3bfe35d1;p=thirdparty%2Fsamba.git socket_wrapper: avoid c++ style comments. Seen on the aix s3-waf build where it causes the build to fail. Guenther --- diff --git a/lib/socket_wrapper/socket_wrapper.c b/lib/socket_wrapper/socket_wrapper.c index 2985d007ece..594b8073103 100644 --- a/lib/socket_wrapper/socket_wrapper.c +++ b/lib/socket_wrapper/socket_wrapper.c @@ -969,7 +969,7 @@ static uint8_t *swrap_packet_init(struct timeval *tval, ip->v6.ver_prio = 0x60; /* version 4 and 5 * 32 bit words */ ip->v6.flow_label_high = 0x00; ip->v6.flow_label_low = 0x0000; - ip->v6.payload_length = htons(wire_len - icmp_truncate_len);//TODO + ip->v6.payload_length = htons(wire_len - icmp_truncate_len); /* TODO */ ip->v6.next_header = protocol; memcpy(ip->v6.src_addr, src_in6->sin6_addr.s6_addr, 16); memcpy(ip->v6.dest_addr, dest_in6->sin6_addr.s6_addr, 16); @@ -1019,7 +1019,7 @@ static uint8_t *swrap_packet_init(struct timeval *tval, ip->v6.ver_prio = 0x60; /* version 4 and 5 * 32 bit words */ ip->v6.flow_label_high = 0x00; ip->v6.flow_label_low = 0x0000; - ip->v6.payload_length = htons(wire_len - icmp_truncate_len);//TODO + ip->v6.payload_length = htons(wire_len - icmp_truncate_len); /* TODO */ ip->v6.next_header = protocol; memcpy(ip->v6.src_addr, dest_in6->sin6_addr.s6_addr, 16); memcpy(ip->v6.dest_addr, src_in6->sin6_addr.s6_addr, 16);