diff options
author | deraadt@openbsd.org <deraadt@openbsd.org> | 2019-11-13 05:47:52 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-11-14 22:50:10 +0100 |
commit | 72687c8e7c38736e3e64e833ee7aa8f9cd9efed1 (patch) | |
tree | 0b2b15cc622ba7f617357cfae6556b2c23b3945a /authfd.c | |
parent | Put sshsk_sign call inside ifdef ENABLE_SK. (diff) | |
download | openssh-72687c8e7c38736e3e64e833ee7aa8f9cd9efed1.tar.xz openssh-72687c8e7c38736e3e64e833ee7aa8f9cd9efed1.zip |
upstream: stdarg.h required more broadly; ok djm
OpenBSD-Commit-ID: b5b15674cde1b54d6dbbae8faf30d47e6e5d6513
Diffstat (limited to 'authfd.c')
-rw-r--r-- | authfd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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,8 +44,8 @@ #include <fcntl.h> #include <stdlib.h> #include <signal.h> -#include <stdarg.h> #include <string.h> +#include <stdarg.h> #include <unistd.h> #include <errno.h> |