r7398@Kushana: nickm | 2006-08-15 00:49:50 -0400

Add missing backslash


svn:r7065
This commit is contained in:
Nick Mathewson 2006-08-15 04:50:33 +00:00
parent 67b775bc6e
commit 163dd78282

View file

@ -781,7 +781,7 @@ reply_parse(u8 *packet, int length) {
// packet. The name stops after a pointer like that.
#define SKIP_NAME \
for(;;) { \
if (j >= length) return;
if (j >= length) return; \
u8 label_len; \
GET8(label_len); \
if (!label_len) break; \