Use /var/lib/hwclock for adjtime, its really a state file rather than a

config file, so it should be in /etc, FHS mentions it also.
This commit is contained in:
Glenn L McGrath 2004-02-22 08:33:37 +00:00
parent fa134cd954
commit f461e0123d

View File

@ -171,7 +171,7 @@ int from_sys_clock ( int utc )
int check_utc ( void )
{
int utc = 0;
FILE *f = fopen ( "/etc/adjtime", "r" );
FILE *f = fopen ( "/var/lib/hwclock/adjtime", "r" );
if ( f ) {
char buffer [128];
@ -254,5 +254,3 @@ extern int hwclock_main ( int argc, char **argv )
return show_clock ( utc );
}
}