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 /auth2-chall.c | |
parent | 1e0b248d47c96be944868a735553af8482300a07 (diff) |
upstream: stdarg.h required more broadly; ok djm
OpenBSD-Commit-ID: b5b15674cde1b54d6dbbae8faf30d47e6e5d6513
Diffstat (limited to 'auth2-chall.c')
-rw-r--r-- | auth2-chall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/auth2-chall.c b/auth2-chall.c index 671f2f05f..c57387b71 100644 --- a/auth2-chall.c +++ b/auth2-chall.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: auth2-chall.c,v 1.51 2019/09/06 04:53:27 djm Exp $ */ | 1 | /* $OpenBSD: auth2-chall.c,v 1.52 2019/11/13 04:47:52 deraadt Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. |
4 | * Copyright (c) 2001 Per Allansson. All rights reserved. | 4 | * Copyright (c) 2001 Per Allansson. All rights reserved. |
@@ -29,9 +29,9 @@ | |||
29 | #include <sys/types.h> | 29 | #include <sys/types.h> |
30 | 30 | ||
31 | #include <stdlib.h> | 31 | #include <stdlib.h> |
32 | #include <stdarg.h> | ||
33 | #include <stdio.h> | 32 | #include <stdio.h> |
34 | #include <string.h> | 33 | #include <string.h> |
34 | #include <stdarg.h> | ||
35 | 35 | ||
36 | #include "xmalloc.h" | 36 | #include "xmalloc.h" |
37 | #include "ssh2.h" | 37 | #include "ssh2.h" |