Fix utempter #ifdefs.
This commit is contained in:
@@ -953,12 +953,14 @@ static bool motd_hushed( void )
|
|||||||
return (0 == lstat( ".hushlogin", &buf ));
|
return (0 == lstat( ".hushlogin", &buf ));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef HAVE_UTMPX_H
|
||||||
static bool device_exists( const char *ut_line )
|
static bool device_exists( const char *ut_line )
|
||||||
{
|
{
|
||||||
string device_name = string( "/dev/" ) + string( ut_line );
|
string device_name = string( "/dev/" ) + string( ut_line );
|
||||||
struct stat buf;
|
struct stat buf;
|
||||||
return (0 == lstat( device_name.c_str(), &buf ));
|
return (0 == lstat( device_name.c_str(), &buf ));
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static void warn_unattached( const string & ignore_entry )
|
static void warn_unattached( const string & ignore_entry )
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user