Fixed duplicate switch case on AIX (thanks to Robin Rawson-Tetley).

This commit is contained in:
Vincent Richard 2009-04-09 20:24:08 +00:00
parent d0bc8b3a95
commit 7d75b131ef

View File

@ -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: