summaryrefslogtreecommitdiffstats
path: root/auth.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2006-07-12 14:15:16 +0200
committerDarren Tucker <dtucker@zip.com.au>2006-07-12 14:15:16 +0200
commit5d19626a0476f40e9320541194391d7eb51038d3 (patch)
treeb04c6cc63d87549b6eaef1ca12fbe3056df3a0eb /auth.c
parent - jmc@cvs.openbsd.org 2006/07/10 16:04:21 (diff)
downloadopenssh-5d19626a0476f40e9320541194391d7eb51038d3.tar.xz
openssh-5d19626a0476f40e9320541194391d7eb51038d3.zip
- stevesk@cvs.openbsd.org 2006/07/10 16:37:36
[readpass.c log.h scp.c fatal.c xmalloc.c includes.h ssh-keyscan.c misc.c auth.c packet.c log.c] move #include <stdarg.h> out of includes.h; ok markus@
Diffstat (limited to 'auth.c')
-rw-r--r--auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auth.c b/auth.c
index 0c8894c99..6901c936a 100644
--- a/auth.c
+++ b/auth.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth.c,v 1.68 2006/07/06 16:03:53 stevesk Exp $ */
+/* $OpenBSD: auth.c,v 1.69 2006/07/10 16:37:36 stevesk Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
@@ -38,10 +38,10 @@
#ifdef USE_SHADOW
#include <shadow.h>
#endif
-
#ifdef HAVE_LIBGEN_H
#include <libgen.h>
#endif
+#include <stdarg.h>
#include "xmalloc.h"
#include "match.h"