From: Erik Rozendaal Date: Tue, 14 Dec 2004 15:40:42 +0000 (+0000) Subject: packet.c: (ldns_wire2packet_header) Replaced evil C99/C++ single line X-Git-Tag: release-0.50~690 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=80a7a6cfa2ebb8d7ed8605a40d7e2e6ea6e67bba;p=thirdparty%2Fldns.git packet.c: (ldns_wire2packet_header) Replaced evil C99/C++ single line comment with standard C89 comment. --- diff --git a/packet.c b/packet.c index 6c259976..e62f1ff8 100644 --- a/packet.c +++ b/packet.c @@ -333,7 +333,7 @@ size_t ldns_wire2packet_header(uint8_t *wire, size_t max, size_t *pos, t_packet *packet) { if (*pos + HEADER_SIZE > *wire + max) { - // TODO: set t_status error + /* TODO: set t_status error. */ return 0; } else { @@ -356,7 +356,7 @@ ldns_wire2packet_header(uint8_t *wire, size_t max, size_t *pos, t_packet *packet *pos += HEADER_SIZE; - // TODO t_status succ + /* TODO t_status succ. */ return 0; } }