summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-04-08 10:31:08 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-04-09 20:08:49 +0100
commitdcde7d32a6a9b60b8642049a8dfb33d2b8bc7b92 (patch)
tree088f2664107176a7f1fb8b79c2127b130ec1e501 /sal
parent7df3ec713a72c3c21693587142ee31d0d93abf4a (diff)
no mkdtemp on AIX either
Change-Id: I9103f86a5b8414c9cdf5fd3a2d662725343f0ed8
Diffstat (limited to 'sal')
-rw-r--r--sal/qa/osl/file/osl_File.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/qa/osl/file/osl_File.cxx b/sal/qa/osl/file/osl_File.cxx
index b4cd2ee3fc6c..b84e70894589 100644
--- a/sal/qa/osl/file/osl_File.cxx
+++ b/sal/qa/osl/file/osl_File.cxx
@@ -5996,7 +5996,7 @@ namespace osl_Directory
if (tmp_x.lastIndexOf('/') != (tmp_x.getLength() - 1))
tmp_x += rtl::OString('/');
-#if !defined(WNT) && !defined(ANDROID)
+#if !defined(WNT) && !defined(ANDROID) && !defined(AIX)
// FIXME would be nice to create unique dir even on Windows
tmp_x += rtl::OString("XXXXXX");
char *out = mkdtemp(const_cast<char*>(tmp_x.getStr()));