aboutsummaryrefslogtreecommitdiffstats
path: root/src/messaging/maildirUtils.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2004-12-15 22:17:03 +0000
committerVincent Richard <[email protected]>2004-12-15 22:17:03 +0000
commit78b3909d9b3e88589e1b28a362bbc54913bca959 (patch)
tree853146fc5746adf25d8ed859a3a299537088c4d4 /src/messaging/maildirUtils.cpp
parentAdded parsing bounds on 'component'. (diff)
downloadvmime-78b3909d9b3e88589e1b28a362bbc54913bca959.tar.gz
vmime-78b3909d9b3e88589e1b28a362bbc54913bca959.zip
Working on 'maildir' implementation.
Diffstat (limited to 'src/messaging/maildirUtils.cpp')
-rw-r--r--src/messaging/maildirUtils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/messaging/maildirUtils.cpp b/src/messaging/maildirUtils.cpp
index 4cf40c9c..e620ce0a 100644
--- a/src/messaging/maildirUtils.cpp
+++ b/src/messaging/maildirUtils.cpp
@@ -75,8 +75,8 @@ const bool maildirUtils::isSubfolderDirectory(const utility::file& file)
// A directory which name does not start with '.'
// is listed as a sub-folder...
if (file.isDirectory() &&
- file.fullPath().getLastComponent().getBuffer().length() >= 1 &&
- file.fullPath().getLastComponent().getBuffer()[0] != '.')
+ file.getFullPath().getLastComponent().getBuffer().length() >= 1 &&
+ file.getFullPath().getLastComponent().getBuffer()[0] != '.')
{
return (true);
}