diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-11-13 04:47:53 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-11-13 04:47:53 +0000 |
commit | 229f88500e8279d37e752d20642883e59c4e4379 (patch) | |
tree | 5fc6e86070158868d371f1dfddca428d9073385f /usr.bin/ssh/authfd.c | |
parent | 4649379618e567347e2a6ce3421f0332779c88e8 (diff) |
stdarg.h required more broadly; ok djm
Diffstat (limited to 'usr.bin/ssh/authfd.c')
-rw-r--r-- | usr.bin/ssh/authfd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/authfd.c b/usr.bin/ssh/authfd.c index bd2003feef3..377f1eb2d01 100644 --- a/usr.bin/ssh/authfd.c +++ b/usr.bin/ssh/authfd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authfd.c,v 1.119 2019/11/12 19:33:08 markus Exp $ */ +/* $OpenBSD: authfd.c,v 1.120 2019/11/13 04:47:52 deraadt Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -44,6 +44,7 @@ #include <stdlib.h> #include <signal.h> #include <string.h> +#include <stdarg.h> #include <unistd.h> #include <errno.h> |