Open VMS changes bug 60143

This commit is contained in:
relyea%netscape.com 2000-12-07 22:24:46 +00:00
parent 157d2345bc
commit 5a0634f3c0
2 changed files with 6 additions and 2 deletions

View File

@ -55,7 +55,7 @@ static int quiet_fgets (char *buf, int length, FILE *input);
static void echoOff(int fd)
{
#ifdef XP_UNIX
#if defined(XP_UNIX) && !defined(VMS)
if (isatty(fd)) {
struct termios tio;
tcgetattr(fd, &tio);
@ -67,7 +67,7 @@ static void echoOff(int fd)
static void echoOn(int fd)
{
#ifdef XP_UNIX
#if defined(XP_UNIX) && !defined(VMS)
if (isatty(fd)) {
struct termios tio;
tcgetattr(fd, &tio);

View File

@ -64,7 +64,11 @@
static char consoleName[] = {
#ifdef XP_UNIX
#ifdef VMS
"TT"
#else
"/dev/tty"
#endif
#else
"CON:"
#endif