Index: ut_path.cpp =================================================================== RCS file: /cvsroot/abi/src/af/util/unix/ut_path.cpp,v retrieving revision 1.6 diff -u -5 -r1.6 ut_path.cpp --- ut_path.cpp 13 Jun 2002 07:43:26 -0000 1.6 +++ ut_path.cpp 14 Jun 2002 05:20:37 -0000 @@ -79,10 +79,10 @@ { struct stat buf; if (stat(path, &buf) != -1) { - return((time_t)-1); + return(buf.st_mtime); } - return(buf.st_mtime); + return((time_t)-1); }