diff host/tools/testtool/win32/RemotePropertiesDialog.cpp @ 82:6736c52df507 ecos-sw-2000-04-14

Merge from eCos master repository on 2000-04-14-13:35:46-BST
author jlarmour
date Tue, 18 Apr 2000 21:51:55 +0000
parents 435cced73e2f
children 74dbf4c3f2e1
line wrap: on
line diff
--- a/host/tools/testtool/win32/RemotePropertiesDialog.cpp
+++ b/host/tools/testtool/win32/RemotePropertiesDialog.cpp
@@ -27,7 +27,7 @@
 
 #include "stdafx.h"
 #include "RemotePropertiesDialog.h"
-#include "eCosTestSocket.h"
+#include "eCosSocket.h"
 
 #ifdef _DEBUG
 #define new DEBUG_NEW
@@ -110,9 +110,9 @@ BOOL CRemotePropertiesDialog::OnInitDial
 void CRemotePropertiesDialog::OnOK() 
 {
     UpdateData();
-    if(m_bFarmed && !CeCosTestSocket::IsLegalHostPort(CeCosTestSocket::HostPort(m_strResourceHost,m_nResourcePort))){
+    if(m_bFarmed && !CeCosSocket::IsLegalHostPort(CeCosSocket::HostPort(m_strResourceHost,m_nResourcePort))){
         MessageBox(_T("Please provide a valid host/port combination for resource server"));
-    } else if (!m_bFarmed && !CeCosTestSocket::IsLegalHostPort(CeCosTestSocket::HostPort(m_strRemoteHost,m_nRemotePort))){
+    } else if (!m_bFarmed && !CeCosSocket::IsLegalHostPort(CeCosSocket::HostPort(m_strRemoteHost,m_nRemotePort))){
         MessageBox(_T("Please provide a valid host/port combination for remote execution"));
     } else {
     	CeCosDialog::OnOK();