From 7d75b131ef8bc6e50ef844f7d0eb1088ffd74242 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Thu, 9 Apr 2009 20:24:08 +0000 Subject: [PATCH] Fixed duplicate switch case on AIX (thanks to Robin Rawson-Tetley). --- src/platforms/posix/posixFile.cpp | 2 ++ 1 file changed, 2 insertions(+) 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: