1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 04:46:17 +00:00

When validationg the configuration file wait for a keypress only if both

stdin and(!) stdout are valid tty's.
This commit is contained in:
Alexander Barton 2005-03-22 18:57:08 +00:00
parent f56a1bdf20
commit f6df13d5f8

View File

@ -14,7 +14,7 @@
#include "portab.h"
static char UNUSED id[] = "$Id: conf.c,v 1.74 2005/03/20 15:00:25 fw Exp $";
static char UNUSED id[] = "$Id: conf.c,v 1.75 2005/03/22 18:57:08 alex Exp $";
#include "imp.h"
#include <assert.h>
@ -105,8 +105,9 @@ Conf_Test( void )
Read_Config( );
Validate_Config( true );
/* If stdin is a valid tty wait for a key: */
if( isatty( fileno( stdin )))
/* If stdin and stdout ("you can read our nice message and we can
* read in your keypress") are valid tty's, wait for a key: */
if( isatty( fileno( stdin )) && isatty( fileno( stdout )))
{
puts( "OK, press enter to see a dump of your service configuration ..." );
getchar( );