diff options
author | deraadt@openbsd.org <deraadt@openbsd.org> | 2019-11-13 04:47:52 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-11-15 08:50:10 +1100 |
commit | 72687c8e7c38736e3e64e833ee7aa8f9cd9efed1 (patch) | |
tree | 0b2b15cc622ba7f617357cfae6556b2c23b3945a /sftp-glob.c | |
parent | 1e0b248d47c96be944868a735553af8482300a07 (diff) |
upstream: stdarg.h required more broadly; ok djm
OpenBSD-Commit-ID: b5b15674cde1b54d6dbbae8faf30d47e6e5d6513
Diffstat (limited to 'sftp-glob.c')
-rw-r--r-- | sftp-glob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sftp-glob.c b/sftp-glob.c index feba0a23c..f573f98f0 100644 --- a/sftp-glob.c +++ b/sftp-glob.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sftp-glob.c,v 1.28 2019/10/02 00:42:30 djm Exp $ */ | 1 | /* $OpenBSD: sftp-glob.c,v 1.29 2019/11/13 04:47:52 deraadt Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> | 3 | * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> |
4 | * | 4 | * |
@@ -23,9 +23,9 @@ | |||
23 | #endif | 23 | #endif |
24 | 24 | ||
25 | #include <dirent.h> | 25 | #include <dirent.h> |
26 | #include <stdarg.h> | ||
27 | #include <stdlib.h> | 26 | #include <stdlib.h> |
28 | #include <string.h> | 27 | #include <string.h> |
28 | #include <stdarg.h> | ||
29 | 29 | ||
30 | #include "xmalloc.h" | 30 | #include "xmalloc.h" |
31 | #include "sftp.h" | 31 | #include "sftp.h" |