summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2020-05-14 18:04:19 +0000
committertb <>2020-05-14 18:04:19 +0000
commitf552271390d3565d566c2e6ab5af2248a57e940e (patch)
tree32d6f7676a6e60df51f4a5b0f7921aec0d40e613
parent7b303087ae6334b1da6221bafd39395d16d7f065 (diff)
downloadopenbsd-f552271390d3565d566c2e6ab5af2248a57e940e.tar.gz
openbsd-f552271390d3565d566c2e6ab5af2248a57e940e.tar.bz2
openbsd-f552271390d3565d566c2e6ab5af2248a57e940e.zip
move a #define after the last #include line
-rw-r--r--src/regress/lib/libssl/handshake/handshake_table.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regress/lib/libssl/handshake/handshake_table.c b/src/regress/lib/libssl/handshake/handshake_table.c
index 2728dd84a1..88777f6fa8 100644
--- a/src/regress/lib/libssl/handshake/handshake_table.c
+++ b/src/regress/lib/libssl/handshake/handshake_table.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: handshake_table.c,v 1.14 2020/05/04 14:20:36 tb Exp $ */ 1/* $OpenBSD: handshake_table.c,v 1.15 2020/05/14 18:04:19 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2019 Theo Buehler <tb@openbsd.org> 3 * Copyright (c) 2019 Theo Buehler <tb@openbsd.org>
4 * 4 *
@@ -21,10 +21,10 @@
21#include <stdlib.h> 21#include <stdlib.h>
22#include <unistd.h> 22#include <unistd.h>
23 23
24#define MAX_FLAGS (UINT8_MAX + 1)
25
26#include "tls13_handshake.h" 24#include "tls13_handshake.h"
27 25
26#define MAX_FLAGS (UINT8_MAX + 1)
27
28/* 28/*
29 * From RFC 8446: 29 * From RFC 8446:
30 * 30 *