diff options
author | Matt Johnston <matt@ucc.asn.au> | 2020-12-03 22:18:51 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2020-12-03 22:18:51 +0800 |
commit | 2c64335d9cfab7674ff5c247208abb4661335c43 (patch) | |
tree | e9967a8934592cb19c312492b430dabddcca6a9d /fuzz-wrapfd.h | |
parent | 286b6b9f80b901528394fabb23a26a0c67dc8f88 (diff) |
fuzz: make postauth set authdone properly
Diffstat (limited to 'fuzz-wrapfd.h')
-rw-r--r-- | fuzz-wrapfd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fuzz-wrapfd.h b/fuzz-wrapfd.h index 56bbc6e..6677e62 100644 --- a/fuzz-wrapfd.h +++ b/fuzz-wrapfd.h @@ -12,8 +12,8 @@ enum wrapfd_mode { // buf is a common buffer read by all wrapped FDs. doesn't take ownership of buf void wrapfd_setup(buffer *buf); void wrapfd_setseed(uint32_t seed); -int wrapfd_new_fuzzinput(); -int wrapfd_new_dummy(); +int wrapfd_new_fuzzinput(void); +int wrapfd_new_dummy(void); // called via #defines for read/write/select int wrapfd_read(int fd, void *out, size_t count); |