mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: wrong nanoseconds in highResLastModified (closes #794)
- was using st_atim instead of st_mtim for the nanoseconds - value of followLink was being ignored (it was always being followed).
This commit is contained in:
@ -57,10 +57,10 @@ Description
|
|||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
|
#include <netinet/in.h>
|
||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
#include <link.h>
|
#include <link.h>
|
||||||
|
|
||||||
#include <netinet/in.h>
|
|
||||||
#ifdef USE_RANDOM
|
#ifdef USE_RANDOM
|
||||||
#include <climits>
|
#include <climits>
|
||||||
#if INT_MAX != 2147483647
|
#if INT_MAX != 2147483647
|
||||||
@ -708,12 +708,12 @@ double Foam::highResLastModified(const fileName& name, const bool followLink)
|
|||||||
// Ignore an empty name
|
// Ignore an empty name
|
||||||
if (!name.empty())
|
if (!name.empty())
|
||||||
{
|
{
|
||||||
fileStat fileStatus(name);
|
fileStat fileStatus(name, followLink);
|
||||||
if (fileStatus.isValid())
|
if (fileStatus.isValid())
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
fileStatus.status().st_mtime
|
fileStatus.status().st_mtime
|
||||||
+ 1e-9*fileStatus.status().st_atim.tv_nsec;
|
+ 1e-9*fileStatus.status().st_mtim.tv_nsec;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user