diff options
author | 2019-11-18 16:10:05 +0000 | |
---|---|---|
committer | 2019-11-18 16:10:05 +0000 | |
commit | d2a7ef3889e2a8f75ee62744f2de105cce90d33f (patch) | |
tree | 2015c00c43d9d109e3489cd3a1acd9c5a415e977 /usr.bin/ssh/ssh-keysign.c | |
parent | add the missing WITH_OPENSSL ifdefs after the ED25519-SK addition; ok djm@ (diff) | |
download | wireguard-openbsd-d2a7ef3889e2a8f75ee62744f2de105cce90d33f.tar.xz wireguard-openbsd-d2a7ef3889e2a8f75ee62744f2de105cce90d33f.zip |
additional missing stdarg.h includes when built without WITH_OPENSSL; ok djm@
Diffstat (limited to 'usr.bin/ssh/ssh-keysign.c')
-rw-r--r-- | usr.bin/ssh/ssh-keysign.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-keysign.c b/usr.bin/ssh/ssh-keysign.c index 49271a24bc9..16e087baa9d 100644 --- a/usr.bin/ssh/ssh-keysign.c +++ b/usr.bin/ssh/ssh-keysign.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keysign.c,v 1.62 2019/10/31 21:23:19 djm Exp $ */ +/* $OpenBSD: ssh-keysign.c,v 1.63 2019/11/18 16:10:05 naddy Exp $ */ /* * Copyright (c) 2002 Markus Friedl. All rights reserved. * @@ -35,6 +35,7 @@ #include <stdlib.h> #include <stdio.h> #include <string.h> +#include <stdarg.h> #include <unistd.h> #include <errno.h> |