Skip to content

Commit 2530c0e

Browse files
committed
fuzz/fuzz-handle_onion_message.c: fix header order.
We check this now. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
1 parent 7bbaecd commit 2530c0e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/fuzz/fuzz-handle_onion_message.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
#include "config.h"
2-
#include <fcntl.h>
3-
#include <setjmp.h>
4-
#include <secp256k1_ecdh.h>
52
#include <common/daemon_conn.h>
63
#include <common/ecdh.h>
74
#include <common/setup.h>
85
#include <common/status.h>
96
#include <common/wire_error.h>
10-
#include <connectd/connectd_wiregen.h>
117
#include <connectd/connectd.h>
8+
#include <connectd/connectd_wiregen.h>
129
#include <connectd/multiplex.h>
1310
#include <connectd/onion_message.h>
14-
#include <wire/peer_wiregen.h>
11+
#include <fcntl.h>
12+
#include <secp256k1_ecdh.h>
13+
#include <setjmp.h>
1514
#include <tests/fuzz/libfuzz.h>
15+
#include <wire/peer_wiregen.h>
1616

1717
static int lightningd_fd;
1818
static struct privkey priv;

0 commit comments

Comments
 (0)