8bd01fdb81aed144cdcf5443772ca25125760743
[unix-history] / usr / src / bin / stty / util.c
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
*
* %sccs.include.redist.c%
*/
#ifndef lint
static char sccsid[] = "@(#)util.c 8.1 (Berkeley) %G%";
#endif /* not lint */
#include <sys/types.h>
#include <sys/stat.h>
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "stty.h"
#include "extern.h"
/*
* Gross, but since we're changing the control descriptor from 1 to 0, most
* users will be probably be doing "stty > /dev/sometty" by accident. If 1
* and 2 are both ttys, but not the same, assume that 1 was incorrectly
* redirected.
*/
void
checkredirect()
{
struct stat sb1, sb2;
if (isatty(STDOUT_FILENO) && isatty(STDERR_FILENO) &&
!fstat(STDOUT_FILENO, &sb1) && !fstat(STDERR_FILENO, &sb2) &&
(sb1.st_rdev != sb2.st_rdev))
warn("stdout appears redirected, but stdin is the control descriptor");
}