socket_wrapper: avoid c++ style comments.
authorGünther Deschner <gd@samba.org>
Thu, 10 Feb 2011 13:20:34 +0000 (14:20 +0100)
committerGünther Deschner <gd@samba.org>
Thu, 10 Feb 2011 14:29:37 +0000 (15:29 +0100)
Seen on the aix s3-waf build where it causes the build to fail.

Guenther

lib/socket_wrapper/socket_wrapper.c

index 2985d007ece785a543c095d37771da34a726c771..594b8073103c08a57481c19cc6bec8b2e77d3601 100644 (file)
@@ -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);