diff options
Diffstat (limited to 'fuzz/server.c')
-rw-r--r-- | fuzz/server.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fuzz/server.c b/fuzz/server.c index e481e5621ce3..d058f1c2d8b3 100644 --- a/fuzz/server.c +++ b/fuzz/server.c @@ -1,5 +1,5 @@ /* - * Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2016-2024 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the Apache License 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -625,8 +625,7 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) OPENSSL_assert((size_t)BIO_write(in, buf, len) == len); - if ((opt & 0x01) != 0) - { + if ((opt & 0x01) != 0) { do { char early_buf[16384]; size_t early_len; |