From cc52a16096b37c991d30a3341de4f34514fc77c1 Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Fri, 18 Sep 2015 11:39:31 -0700 Subject: [PATCH] [master] fix wire_test so it can read files with comment lines --- bin/tests/wire_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/wire_test.c b/bin/tests/wire_test.c index acfedb413d..db83a1b0d0 100644 --- a/bin/tests/wire_test.c +++ b/bin/tests/wire_test.c @@ -212,7 +212,7 @@ main(int argc, char *argv[]) { rp++; } if (len == 0U) - break; + continue; if (len % 2 != 0U) { fprintf(stderr, "bad input format: %lu\n", (unsigned long)len);