diff options
author | Vincent Richard <[email protected]> | 2009-04-09 20:24:08 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2009-04-09 20:24:08 +0000 |
commit | 7d75b131ef8bc6e50ef844f7d0eb1088ffd74242 (patch) | |
tree | 5d7e91fa61873a632024e62d634e0e40b2a5e9a6 /src/platforms/posix/posixFile.cpp | |
parent | Fixed block size through filtered streams. (diff) | |
download | vmime-7d75b131ef8bc6e50ef844f7d0eb1088ffd74242.tar.gz vmime-7d75b131ef8bc6e50ef844f7d0eb1088ffd74242.zip |
Fixed duplicate switch case on AIX (thanks to Robin Rawson-Tetley).
Diffstat (limited to 'src/platforms/posix/posixFile.cpp')
-rw-r--r-- | src/platforms/posix/posixFile.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/platforms/posix/posixFile.cpp b/src/platforms/posix/posixFile.cpp index e89b9ab2..b371fe73 100644 --- a/src/platforms/posix/posixFile.cpp +++ b/src/platforms/posix/posixFile.cpp @@ -488,7 +488,9 @@ void posixFileSystemFactory::reportError(const vmime::utility::path& path, const case ENOMEM: desc = "ENOMEM: insufficient kernel memory."; break; case EMFILE: desc = "ENFILE: limit on number of files open by the process has been reached."; break; case ENFILE: desc = "ENFILE: limit on number of files open on the system has been reached."; break; +#ifndef AIX case ENOTEMPTY: desc = "ENOTEMPTY: directory is not empty."; break; +#endif default: |