- (djm) Define _PATH_TTY for systems that don't. Report from Lutz

Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
This commit is contained in:
Damien Miller 2001-02-09 22:55:16 +11:00
parent 288cc3970c
commit 4192c46791
2 changed files with 8 additions and 2 deletions

View File

@ -48,6 +48,8 @@
- djm@cvs.openbsd.org 2001/02/06 23:30:28
[sftp-client.c]
replace arc4random with counter for request ids; ok markus@
- (djm) Define _PATH_TTY for systems that don't. Report from Lutz
Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
20010208
- (djm) Don't delete external askpass program in make uninstall target.
@ -3701,4 +3703,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.708 2001/02/09 02:58:04 mouring Exp $
$Id: ChangeLog,v 1.709 2001/02/09 11:55:16 djm Exp $

View File

@ -1,7 +1,7 @@
#ifndef _DEFINES_H
#define _DEFINES_H
/* $Id: defines.h,v 1.53 2001/02/09 01:55:36 djm Exp $ */
/* $Id: defines.h,v 1.54 2001/02/09 11:55:17 djm Exp $ */
/* Some platforms need this for the _r() functions */
#if !defined(_REENTRANT) && !defined(SNI)
@ -303,6 +303,10 @@ struct winsize {
#define XAUTH_PATH "/usr/X11R6/bin/xauth"
#endif /* XAUTH_PATH */
#ifndef _PATH_TTY
# define _PATH_TTY "/dev/tty"
#endif
/* Macros */
#if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)