From c10593787f8abc999647cf267309785761b98489 Mon Sep 17 00:00:00 2001 From: schmidt Date: Sat, 6 May 2006 14:53:02 +0000 Subject: ChangeLogTag:Sat May 6 09:52:06 2006 Douglas C. Schmidt --- ChangeLog | 6 ++++++ THANKS | 1 + examples/DLL/test_dll.cpp | 4 ++-- 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 + + * 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 * 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 Michael Sawczyn Ildar Gabdulline David Yongqiang Wang +Shahzad Aslam-Mir Andrew Foster C Chan Alexey Chalimov 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, -- cgit v1.2.1