summaryrefslogtreecommitdiff
path: root/sshpty.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 /sshpty.c
parentde6dd0a35f9eb100d02a8953800ae49cc27e9cd5 (diff)
downloadopenssh-git-03e2003a2336e576aa1f27eab4f0f5b0b582bddd.tar.gz
- 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 'sshpty.c')
-rw-r--r--sshpty.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/sshpty.c b/sshpty.c
index 8ce8ee46..6b0ad1f2 100644
--- a/sshpty.c
+++ b/sshpty.c
@@ -12,10 +12,12 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: sshpty.c,v 1.13 2006/02/07 01:42:00 stevesk Exp $");
-
-#include <termios.h>
+RCSID("$OpenBSD: sshpty.c,v 1.14 2006/02/08 12:15:27 stevesk Exp $");
+#ifdef HAVE_PATHS_H
+# include <paths.h>
+#endif
+#include <termios.h>
#ifdef HAVE_UTIL_H
# include <util.h>
#endif /* HAVE_UTIL_H */