summaryrefslogtreecommitdiff
path: root/libs/ardour/file_source.cc
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2012-06-23 05:07:59 +0000
committerTim Mayberry <mojofunk@gmail.com>2012-06-23 05:07:59 +0000
commit17475df100de18b01dee4c0d943fa2c26405bf4e (patch)
treeebe91e65c916dcbf89caa7fd185c80e49e966734 /libs/ardour/file_source.cc
parent5ae32cdfd9d85b9202adfb7e4028c621c23000b2 (diff)
Rename PBD::sys::inodes_same to equivalent_paths
This better reflects its function and more closely matches boost naming(which is usually a good sign) git-svn-id: svn://localhost/ardour2/branches/3.0@12857 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/file_source.cc')
-rw-r--r--libs/ardour/file_source.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/file_source.cc b/libs/ardour/file_source.cc
index d401caa037..ba2b809dbe 100644
--- a/libs/ardour/file_source.cc
+++ b/libs/ardour/file_source.cc
@@ -277,7 +277,7 @@ FileSource::find (Session& s, DataType type, const string& path, bool must_exist
++j;
while (j != hits.end()) {
- if (PBD::sys::inodes_same (*i, *j)) {
+ if (PBD::sys::equivalent_paths (*i, *j)) {
/* *i and *j are the same file; break out of the loop early */
break;
}