mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-25 14:54:45 +02:00
- 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.
|
move checking of hostkey into own function.
|
||||||
- [version.h]
|
- [version.h]
|
||||||
OpenSSH-1.2.1
|
OpenSSH-1.2.1
|
||||||
|
- Clean up broken includes in pty.c
|
||||||
|
|
||||||
19991211
|
19991211
|
||||||
- Fix compilation on systems with AFS. Reported by
|
- 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 \
|
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 \
|
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 \
|
bufaux.o buffer.o canohost.o channels.o cipher.o clientloop.o \
|
||||||
compress.o crc32.o deattack.o helper.o helper.o hostfile.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 \
|
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"
|
#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 "pty.h"
|
||||||
#include "ssh.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. */
|
/* Pty allocated with _getpty gets broken if we do I_PUSH:es to it. */
|
||||||
#if defined(HAVE__GETPTY) || defined(HAVE_OPENPTY)
|
#if defined(HAVE__GETPTY) || defined(HAVE_OPENPTY)
|
||||||
#undef HAVE_DEV_PTMX
|
#undef HAVE_DEV_PTMX
|
||||||
|
Loading…
x
Reference in New Issue
Block a user