summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2006-05-06 14:53:02 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2006-05-06 14:53:02 +0000
commitc10593787f8abc999647cf267309785761b98489 (patch)
tree7da2574a449f1f68395509ad27a9012f62faeac7
parentd769165e11dc222474042015eb9066ce67fa5903 (diff)
downloadATCD-c10593787f8abc999647cf267309785761b98489.tar.gz
ChangeLogTag:Sat May 6 09:52:06 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
-rw-r--r--ChangeLog6
-rw-r--r--THANKS1
-rw-r--r--examples/DLL/test_dll.cpp4
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ca68aa83a60..bbdb782b682 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sat May 6 09:52:06 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
+
+ * examples/DLL/test_dll.cpp: Renamed the DLLs and removed the "./"
+ from the pathname. Thanks to Sam and Roopa for reporting this
+ and tracking it down, respectively.
+
Sat May 6 10:23:13 UTC 2006 Steve Huston <shuston@riverace.com>
* include/makeinclude/platform_sunos5_sunc++.GNU: Add -lrt -laio to
diff --git a/THANKS b/THANKS
index 9ab5aefe3a7..8b052bc73ae 100644
--- a/THANKS
+++ b/THANKS
@@ -1370,6 +1370,7 @@ Bo Balder <bba at post dot utfors dot se>
Michael Sawczyn <msawczyn at columbus dot rr dot com>
Ildar Gabdulline <ildar_gabdullin at mailru dot com>
David Yongqiang Wang <davidyw at avaya dot com>
+Shahzad Aslam-Mir <s786am at hotmail dot com>
Andrew Foster <awf at prismtechnologies dot com>
C Chan <CChan at md dot aacisd dot com>
Alexey Chalimov <alexey at allcharge dot com>
diff --git a/examples/DLL/test_dll.cpp b/examples/DLL/test_dll.cpp
index 10dbcbddaa4..7e48598162f 100644
--- a/examples/DLL/test_dll.cpp
+++ b/examples/DLL/test_dll.cpp
@@ -20,7 +20,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
ACE_DLL dll;
- int retval = dll.open (ACE_TEXT("./") ACE_DLL_PREFIX ACE_TEXT("Today"));
+ int retval = dll.open (ACE_TEXT("./") ACE_DLL_PREFIX ACE_TEXT("DLL_Today"));
if (retval != 0)
ACE_ERROR_RETURN ((LM_ERROR,
@@ -46,7 +46,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
// The other library is now loaded on demand.
- retval = dll.open (ACE_TEXT("./") ACE_DLL_PREFIX ACE_TEXT("Newsweek"));
+ retval = dll.open (ACE_DLL_PREFIX ACE_TEXT("DLL_Newsweek"));
if (retval != 0)
ACE_ERROR_RETURN ((LM_ERROR,