summaryrefslogtreecommitdiff
path: root/apps/JAWS/clients/Blobby/Blob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'apps/JAWS/clients/Blobby/Blob.cpp')
-rw-r--r--apps/JAWS/clients/Blobby/Blob.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/JAWS/clients/Blobby/Blob.cpp b/apps/JAWS/clients/Blobby/Blob.cpp
index 46ea942f714..207a9cc5ded 100644
--- a/apps/JAWS/clients/Blobby/Blob.cpp
+++ b/apps/JAWS/clients/Blobby/Blob.cpp
@@ -17,14 +17,13 @@ ACE_Blob::~ACE_Blob (void)
// initialize address and filename. No network i/o in open
int
-ACE_Blob::open (char *filename, const char *hostname , u_short port)
+ACE_Blob::open (ACE_TCHAR *filename, const ACE_TCHAR *hostname , u_short port)
{
- filename_ = ACE_OS::strdup(filename);
+ filename_ = ACE_OS_String::strdup (filename);
inet_addr_.set (port, hostname);
return 0;
}
-
// read from connection length bytes from offset, into Message block
int