summaryrefslogtreecommitdiffstats
path: root/fuzz/server.c
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2016-11-19 17:10:35 +0100
committerKurt Roeckx <kurt@roeckx.be>2016-12-03 00:14:14 +0100
commitf3e911d5ed16db6a129306675e20e51d1ee81e1a (patch)
treeb252ec0a8a29d5cbf24288a58dd7e7cd82664bb1 /fuzz/server.c
parent82cb311fa0e1096bc6840fd92973d9b418ff5dde (diff)
Fix formatting of fuzzers
Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #2023
Diffstat (limited to 'fuzz/server.c')
-rw-r--r--fuzz/server.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fuzz/server.c b/fuzz/server.c
index 35449d8caa..26ef4da1e6 100644
--- a/fuzz/server.c
+++ b/fuzz/server.c
@@ -191,7 +191,8 @@ static const uint8_t kRSAPrivateKeyDER[] = {
static SSL_CTX *ctx;
-int FuzzerInitialize(int *argc, char ***argv) {
+int FuzzerInitialize(int *argc, char ***argv)
+{
const uint8_t *bufp = kRSAPrivateKeyDER;
RSA *privkey;
EVP_PKEY *pkey;
@@ -216,7 +217,8 @@ int FuzzerInitialize(int *argc, char ***argv) {
return 1;
}
-int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
SSL *server;
BIO *in;
BIO *out;