summaryrefslogtreecommitdiff
path: root/krl.c
diff options
context:
space:
mode:
Diffstat (limited to 'krl.c')
-rw-r--r--krl.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/krl.c b/krl.c
index 8e2d5d5df..a7f690955 100644
--- a/krl.c
+++ b/krl.c
@@ -14,7 +14,7 @@
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */ 15 */
16 16
17/* $OpenBSD: krl.c,v 1.42 2018/09/12 01:21:34 djm Exp $ */ 17/* $OpenBSD: krl.c,v 1.44 2019/09/06 04:53:27 djm Exp $ */
18 18
19#include "includes.h" 19#include "includes.h"
20 20
@@ -25,6 +25,7 @@
25#include <errno.h> 25#include <errno.h>
26#include <fcntl.h> 26#include <fcntl.h>
27#include <limits.h> 27#include <limits.h>
28#include <stdlib.h>
28#include <string.h> 29#include <string.h>
29#include <time.h> 30#include <time.h>
30#include <unistd.h> 31#include <unistd.h>
@@ -732,7 +733,7 @@ revoked_certs_generate(struct revoked_certs *rc, struct sshbuf *buf)
732 733
733int 734int
734ssh_krl_to_blob(struct ssh_krl *krl, struct sshbuf *buf, 735ssh_krl_to_blob(struct ssh_krl *krl, struct sshbuf *buf,
735 const struct sshkey **sign_keys, u_int nsign_keys) 736 struct sshkey **sign_keys, u_int nsign_keys)
736{ 737{
737 int r = SSH_ERR_INTERNAL_ERROR; 738 int r = SSH_ERR_INTERNAL_ERROR;
738 struct revoked_certs *rc; 739 struct revoked_certs *rc;