diff options
author | Damien Miller <djm@mindrot.org> | 1999-12-21 11:18:08 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-12-21 11:18:08 +1100 |
commit | 76112de73437ac3db04b45d4b7a9d1f1b74f83fd (patch) | |
tree | cbfb21a6bd6acc7c3a478b5c186ee49e0b0f9fbb /pty.c | |
parent | 368cf64d5c7cee6eb85d9240ea04ccf43273b5fc (diff) |
- Integration of large HPUX patch from Andre Lucas
<andre.lucas@dial.pipex.com>. Integrating it had a few other
benefits:
- Ability to disable shadow passwords at configure time
- Ability to disable lastlog support at configure time
- Support for IP address in $DISPLAY
Diffstat (limited to 'pty.c')
-rw-r--r-- | pty.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ | |||
14 | */ | 14 | */ |
15 | 15 | ||
16 | #include "includes.h" | 16 | #include "includes.h" |
17 | RCSID("$Id: pty.c,v 1.10 1999/12/13 23:54:47 damien Exp $"); | 17 | RCSID("$Id: pty.c,v 1.11 1999/12/21 00:18:08 damien Exp $"); |
18 | 18 | ||
19 | #ifdef HAVE_UTIL_H | 19 | #ifdef HAVE_UTIL_H |
20 | # include <util.h> | 20 | # include <util.h> |
@@ -84,7 +84,7 @@ pty_allocate(int *ptyfd, int *ttyfd, char *namebuf, int namebuflen) | |||
84 | } | 84 | } |
85 | return 1; | 85 | return 1; |
86 | #else /* HAVE__GETPTY */ | 86 | #else /* HAVE__GETPTY */ |
87 | #ifdef HAVE_DEV_PTMX | 87 | #if defined(HAVE_DEV_PTMX) |
88 | /* | 88 | /* |
89 | * This code is used e.g. on Solaris 2.x. (Note that Solaris 2.3 | 89 | * This code is used e.g. on Solaris 2.x. (Note that Solaris 2.3 |
90 | * also has bsd-style ptys, but they simply do not work.) | 90 | * also has bsd-style ptys, but they simply do not work.) |