summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-10-06 14:15:02 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-10-06 14:15:02 +0000
commit74c0db0d473de80216db3d974dcaca7964bc6ef8 (patch)
tree67d65323420fb64cd58d48769331c4defde3a01d
parent9eb6eb94ef5a69ca92d0d00b9c5d69820ac13c4b (diff)
downloadATCD-74c0db0d473de80216db3d974dcaca7964bc6ef8.tar.gz
Mon Oct 6 14:14:45 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--TAO/ChangeLog5
-rw-r--r--TAO/TAO_IDL/driver/drv_preproc.cpp2
2 files changed, 6 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 0331c42fdaf..46a735a2e52 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,8 @@
+Mon Oct 6 14:14:45 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * TAO_IDL/driver/drv_preproc.cpp
+ ACE_TCHAR fixes
+
Mon Oct 6 14:04:45 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/CSD_Strategy_Tests/Broken/ClientApp.cpp
diff --git a/TAO/TAO_IDL/driver/drv_preproc.cpp b/TAO/TAO_IDL/driver/drv_preproc.cpp
index d1ce35dbc77..4cb22e5c6e5 100644
--- a/TAO/TAO_IDL/driver/drv_preproc.cpp
+++ b/TAO/TAO_IDL/driver/drv_preproc.cpp
@@ -343,7 +343,7 @@ DRV_sweep_dirs (const char *rel_path,
char abspath[MAXPATHLEN] = "";
char *full_path = 0;
- for (dirent *dir_entry; (dir_entry = dir.read ()) != 0;)
+ for (ACE_DIRENT *dir_entry; (dir_entry = dir.read ()) != 0;)
{
// Skip the ".." and "." files in each directory.
if (ACE_OS::strcmp (dir_entry->d_name, DIR_DOT) == 0