diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-03-31 18:43:10 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-03-31 18:43:10 +0200 |
commit | 5d409fdca92e085dad2f9c80b42f33afe4f10800 (patch) | |
tree | b662a22783a8739291f90788e18699825795a6ef /xpcom/io/nsLocalFile.h | |
parent | 49a3f5a53793d75cd243936e22f99b798e84c84b (diff) | |
download | UXP-5d409fdca92e085dad2f9c80b42f33afe4f10800.tar UXP-5d409fdca92e085dad2f9c80b42f33afe4f10800.tar.gz UXP-5d409fdca92e085dad2f9c80b42f33afe4f10800.tar.lz UXP-5d409fdca92e085dad2f9c80b42f33afe4f10800.tar.xz UXP-5d409fdca92e085dad2f9c80b42f33afe4f10800.zip |
Remove AIX 1st party code OS checks, part 1
Issue #186
Diffstat (limited to 'xpcom/io/nsLocalFile.h')
-rw-r--r-- | xpcom/io/nsLocalFile.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/xpcom/io/nsLocalFile.h b/xpcom/io/nsLocalFile.h index f7bdb86f7..a8e0a1279 100644 --- a/xpcom/io/nsLocalFile.h +++ b/xpcom/io/nsLocalFile.h @@ -91,15 +91,8 @@ nsresultForErrno(int aErr) case EROFS: /* Read-only file system. */ return NS_ERROR_FILE_READ_ONLY; #endif - /* - * On AIX 4.3, ENOTEMPTY is defined as EEXIST, - * so there can't be cases for both without - * preprocessing. - */ -#if ENOTEMPTY != EEXIST case ENOTEMPTY: return NS_ERROR_FILE_DIR_NOT_EMPTY; -#endif /* ENOTEMPTY != EEXIST */ /* Note that nsIFile.createUnique() returns NS_ERROR_FILE_TOO_BIG when it cannot create a temporary file with a unique filename. |