From b359d84661583feca185f9cbd80b7a217c074075 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Mon, 31 Mar 2008 21:42:59 +0000 Subject: [PATCH] Use the correct prefix. This commit was SVN r18048. --- opal/util/opal_environ.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/opal/util/opal_environ.c b/opal/util/opal_environ.c index f6dd997bdc..6929cffef0 100644 --- a/opal/util/opal_environ.c +++ b/opal/util/opal_environ.c @@ -31,9 +31,9 @@ #include "opal/constants.h" #ifdef __WINDOWS__ -#define OMPI_DEFAULT_TMPDIR "C:\\TEMP" +#define OPAL_DEFAULT_TMPDIR "C:\\TEMP" #else -#define OMPI_DEFAULT_TMPDIR "/tmp" +#define OPAL_DEFAULT_TMPDIR "/tmp" #endif /* @@ -230,7 +230,7 @@ const char* opal_tmp_directory( void ) if( NULL == (str = getenv("TMPDIR")) ) if( NULL == (str = getenv("TEMP")) ) if( NULL == (str = getenv("TMP")) ) - str = OMPI_DEFAULT_TMPDIR; + str = OPAL_DEFAULT_TMPDIR; return str; }