change _PATH_UTMP to UTMP_FILE

This commit is contained in:
Doug MacEachern 2005-02-22 01:54:58 +00:00
parent 9410608f43
commit 8131492067
1 changed files with 1 additions and 1 deletions

View File

@ -722,7 +722,7 @@ int sigar_who_list_get(sigar_t *sigar,
FILE *fp;
struct utmp ut;
if (!(fp = fopen(_PATH_UTMP, "r"))) {
if (!(fp = fopen(UTMP_FILE, "r"))) {
return errno;
}