summaryrefslogtreecommitdiff
path: root/zen/file_traverser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zen/file_traverser.cpp')
-rw-r--r--zen/file_traverser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/file_traverser.cpp b/zen/file_traverser.cpp
index 0e06d6c5..9c1b01a4 100644
--- a/zen/file_traverser.cpp
+++ b/zen/file_traverser.cpp
@@ -452,7 +452,7 @@ private:
try
{
//set modification time including DST hack: this function is too clever to not introduce this dependency
- setFileTime(it->first, it->second, SYMLINK_FOLLOW); //throw FileError
+ setFileTime(it->first, it->second, ProcSymlink::FOLLOW); //throw FileError
}
catch (FileError&)
{
bgstack15