summaryrefslogtreecommitdiff
path: root/readpass.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 11:16:59 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 11:16:59 +1100
commit03e2003a2336e576aa1f27eab4f0f5b0b582bddd (patch)
tree4c5977b3b668f0d94f75a5b9a9085c77b70f2174 /readpass.c
parentde6dd0a35f9eb100d02a8953800ae49cc27e9cd5 (diff)
- stevesk@cvs.openbsd.org 2006/02/08 12:15:27
[auth.c clientloop.c includes.h misc.c monitor.c readpass.c] [session.c sftp.c ssh-agent.c ssh-keysign.c ssh.c sshconnect.c] [sshd.c sshpty.c] move #include <paths.h> out of includes.h; ok markus@
Diffstat (limited to 'readpass.c')
-rw-r--r--readpass.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/readpass.c b/readpass.c
index 7914799a4..a9b99617a 100644
--- a/readpass.c
+++ b/readpass.c
@@ -23,7 +23,11 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: readpass.c,v 1.33 2005/05/02 21:13:22 markus Exp $"); 26RCSID("$OpenBSD: readpass.c,v 1.34 2006/02/08 12:15:27 stevesk Exp $");
27
28#ifdef HAVE_PATHS_H
29# include <paths.h>
30#endif
27 31
28#include "xmalloc.h" 32#include "xmalloc.h"
29#include "misc.h" 33#include "misc.h"