mirror of git://anongit.mindrot.org/openssh.git
- Clean up broken includes in pty.c
This commit is contained in:
parent
a34a28bf86
commit
36b339a906
|
@ -16,6 +16,7 @@
|
|||
move checking of hostkey into own function.
|
||||
- [version.h]
|
||||
OpenSSH-1.2.1
|
||||
- Clean up broken includes in pty.c
|
||||
|
||||
19991211
|
||||
- Fix compilation on systems with AFS. Reported by
|
||||
|
|
|
@ -26,7 +26,7 @@ GNOME_LIBS=`gnome-config --libs gnome gnomeui`
|
|||
|
||||
OBJS= atomicio.o authfd.o authfile.o auth-krb4.o auth-passwd.o \
|
||||
auth-rhosts.o auth-rh-rsa.o auth-rsa.o auth-skey.o bsd-daemon.o \
|
||||
bsd-login.o bsd-mktemp.o bsd-snprintf.o bsd-strlcat.o bsd-strlcpy.o
|
||||
bsd-login.o bsd-mktemp.o bsd-snprintf.o bsd-strlcat.o bsd-strlcpy.o \
|
||||
bufaux.o buffer.o canohost.o channels.o cipher.o clientloop.o \
|
||||
compress.o crc32.o deattack.o helper.o helper.o hostfile.o \
|
||||
log-client.o login.o log-server.o match.o md5crypt.o mpaux.o \
|
||||
|
|
11
pty.c
11
pty.c
|
@ -14,16 +14,15 @@
|
|||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$Id: pty.c,v 1.9 1999/12/13 23:47:16 damien Exp $");
|
||||
RCSID("$Id: pty.c,v 1.10 1999/12/13 23:54:47 damien Exp $");
|
||||
|
||||
#ifdef HAVE_UTIL_H
|
||||
# include <util.h>
|
||||
#endif /* HAVE_UTIL_H */
|
||||
|
||||
#include <util.h>
|
||||
#include "pty.h"
|
||||
#include "ssh.h"
|
||||
|
||||
#ifdef HAVE_DEV_PTMX
|
||||
#include <sys/stropts.h>
|
||||
#endif /* HAVE_DEV_PTMX */
|
||||
|
||||
/* Pty allocated with _getpty gets broken if we do I_PUSH:es to it. */
|
||||
#if defined(HAVE__GETPTY) || defined(HAVE_OPENPTY)
|
||||
#undef HAVE_DEV_PTMX
|
||||
|
|
Loading…
Reference in New Issue