diff options
author | tb <> | 2021-09-14 16:37:20 +0000 |
---|---|---|
committer | tb <> | 2021-09-14 16:37:20 +0000 |
commit | 22a984b3406437c8821498bd4a37de2a664b528c (patch) | |
tree | 95c74e9867b6f9c17906541188db49764a90bd21 | |
parent | e0ccf0da4a84dc5959b16943f7c92c13a2b0d07a (diff) | |
download | openbsd-22a984b3406437c8821498bd4a37de2a664b528c.tar.gz openbsd-22a984b3406437c8821498bd4a37de2a664b528c.tar.bz2 openbsd-22a984b3406437c8821498bd4a37de2a664b528c.zip |
Add missing void to definition of http_init().
ok deraadt florian
-rw-r--r-- | src/usr.sbin/ocspcheck/http.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.sbin/ocspcheck/http.c b/src/usr.sbin/ocspcheck/http.c index 6a19ad31cb..1669105469 100644 --- a/src/usr.sbin/ocspcheck/http.c +++ b/src/usr.sbin/ocspcheck/http.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $Id: http.c,v 1.14 2021/07/14 13:33:57 kn Exp $ */ | 1 | /* $Id: http.c,v 1.15 2021/09/14 16:37:20 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv> | 3 | * Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv> |
4 | * | 4 | * |
@@ -119,7 +119,7 @@ dotlswrite(const void *buf, size_t sz, const struct http *http) | |||
119 | } | 119 | } |
120 | 120 | ||
121 | int | 121 | int |
122 | http_init() | 122 | http_init(void) |
123 | { | 123 | { |
124 | if (tlscfg != NULL) | 124 | if (tlscfg != NULL) |
125 | return 0; | 125 | return 0; |