summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Mesnier <mesnier_p@ociweb.com>2003-03-05 06:00:01 +0000
committerPhil Mesnier <mesnier_p@ociweb.com>2003-03-05 06:00:01 +0000
commit6fea3448c6db19ddb0d1443fa9e369777bb40d5f (patch)
tree63ec395b13894de908ddb055ff7974de58d18cfe
parente403f384540b4682985c118a96d9042b032fef1e (diff)
downloadATCD-6fea3448c6db19ddb0d1443fa9e369777bb40d5f.tar.gz
ChangeLog tag: Wed Mar 5 00:01:09 2003 Phil Mesnier <mesnier_p@ociweb.com>
-rw-r--r--TAO/ChangeLog6
-rw-r--r--TAO/TAO_IDL/util/utl_global.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index e3b68d6d9ee..0965ba656a9 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,9 @@
+Wed Mar 5 00:01:09 2003 Phil Mesnier <mesnier_p@ociweb.com>
+
+ * TAO_IDL/util/utl_global.cpp (validate_included_idl_files):
+ Swapped the order of parameters to passed to realpath, which is the
+ non-windows function used for canonizing a path.
+
Tue Mar 4 13:44:06 2003 Phil Mesnier <mesnier_p@ociweb.com>
* TAO/TAO_IDL/be/be_visitor_operation/operation.cpp:
diff --git a/TAO/TAO_IDL/util/utl_global.cpp b/TAO/TAO_IDL/util/utl_global.cpp
index 5ff1ce7fcad..c51508ded00 100644
--- a/TAO/TAO_IDL/util/utl_global.cpp
+++ b/TAO/TAO_IDL/util/utl_global.cpp
@@ -647,7 +647,7 @@ IDL_GlobalData::validate_included_idl_files (void)
# define FULLPATH(full, partial, maxlen) ::_fullpath (full, partial, maxlen)
ACE_OS::strcpy (separator, "\\");
# else
-# define FULLPATH(full, partial, maxlen) realpath (full, partial)
+# define FULLPATH(full, partial, maxlen) realpath (partial, full)
ACE_OS::strcpy (separator, "/");
# endif