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-agent.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-agent.c')
-rw-r--r-- | usr.bin/ssh/ssh-agent.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c index 059788a4333..085c7ebcb26 100644 --- a/usr.bin/ssh/ssh-agent.c +++ b/usr.bin/ssh/ssh-agent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-agent.c,v 1.247 2019/11/16 22:36:48 djm Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.248 2019/11/18 16:10:05 naddy Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -55,6 +55,7 @@ #include <stdlib.h> #include <stdio.h> #include <string.h> +#include <stdarg.h> #include <limits.h> #include <time.h> #include <unistd.h> |