summaryrefslogtreecommitdiff
path: root/lib/Archive/Archive.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-03-29 16:48:16 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-03-29 16:48:16 +0000
commit5ba2b702c21052346f171ab277824dc0e549ff77 (patch)
tree2aa9a6364c19ebdcc8512621ebed6fdcc9e6e637 /lib/Archive/Archive.cpp
parent69cce815e7414ad9a186920c78890c852986d6bf (diff)
For PR789:
Updates for change in interface of getFileStatus method of sys::Path class. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35458 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Archive/Archive.cpp')
-rw-r--r--lib/Archive/Archive.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Archive/Archive.cpp b/lib/Archive/Archive.cpp
index 1c0b205e9e2..aff7ab8f1e6 100644
--- a/lib/Archive/Archive.cpp
+++ b/lib/Archive/Archive.cpp
@@ -116,7 +116,7 @@ bool ArchiveMember::replaceWith(const sys::Path& newFile, std::string* ErrMsg) {
path.getMagicNumber(magic,4);
signature = magic.c_str();
std::string err;
- if (path.getFileStatus(info, ErrMsg))
+ if (path.getFileStatus(info, false, ErrMsg))
return true;
}