diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-04-04 23:08:02 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-04-04 23:08:44 +0200 |
commit | f25cae2e18fda91c47c57b799c45bc074119b211 (patch) | |
tree | 151d463f0bbf0d2be8e6539af5e542b8b9c68fb2 /sal | |
parent | 744525c84849ce6ba45348a052bc3ec3cd0d0b55 (diff) |
Typo: creat->create
Change-Id: I5e57e6d506504933096f4c8e371b0ddc93c04cbd
Diffstat (limited to 'sal')
-rw-r--r-- | sal/qa/osl/file/osl_File.cxx | 2 | ||||
-rw-r--r-- | sal/qa/osl/socket/osl_Socket.cxx | 8 | ||||
-rw-r--r-- | sal/qa/osl/socket/osl_StreamSocket.cxx | 12 |
3 files changed, 11 insertions, 11 deletions
diff --git a/sal/qa/osl/file/osl_File.cxx b/sal/qa/osl/file/osl_File.cxx index b5c5cc204c9b..cec250d6f4a1 100644 --- a/sal/qa/osl/file/osl_File.cxx +++ b/sal/qa/osl/file/osl_File.cxx @@ -2077,7 +2077,7 @@ namespace osl_FileStatus fd = remove( strLinkFileName.getStr() ); CPPUNIT_ASSERT_MESSAGE( "in deleting link file", fd == 0 ); - CPPUNIT_ASSERT_MESSAGE( "test for getLinkTargetURL function: Solaris version, creat a file, and a link file link to it, get its LinkTargetURL and compare", + CPPUNIT_ASSERT_MESSAGE( "test for getLinkTargetURL function: Solaris version, create a file, and a link file link to it, get its LinkTargetURL and compare", compareFileName( aFileURL, aTypeURL ) ); } #else diff --git a/sal/qa/osl/socket/osl_Socket.cxx b/sal/qa/osl/socket/osl_Socket.cxx index d3fb0128de22..94eed88daa98 100644 --- a/sal/qa/osl/socket/osl_Socket.cxx +++ b/sal/qa/osl/socket/osl_Socket.cxx @@ -363,7 +363,7 @@ public: csConnectorSocket( ) { m_id = getIdentifier( ); - //t_print("# successfully creat this client thread %d!\n", m_id ); + //t_print("# successfully create this client thread %d!\n", m_id ); } ~ClientSocketThread( ) @@ -434,7 +434,7 @@ public: ServerSocketThread( ) { m_id = getIdentifier( ); - //t_print("# successfully creat this server thread %d!\n", m_id ); + //t_print("# successfully create this server thread %d!\n", m_id ); } ~ServerSocketThread( ) @@ -552,7 +552,7 @@ public: csConnectorSocket( ) { m_id = getIdentifier( ); - //t_print("# successfully creat this client thread %d!\n", m_id ); + //t_print("# successfully create this client thread %d!\n", m_id ); m_aValues.createBuffer(_nBufferSize, 0); } @@ -625,7 +625,7 @@ public: WriteSocketThread(sal_Int32 _nBufferSize, int _nValue ) { m_id = getIdentifier( ); - //t_print("# successfully creat this server thread %d!\n", m_id ); + //t_print("# successfully create this server thread %d!\n", m_id ); m_aValues.createBuffer(_nBufferSize, _nValue); } diff --git a/sal/qa/osl/socket/osl_StreamSocket.cxx b/sal/qa/osl/socket/osl_StreamSocket.cxx index 05906f0f239b..42b9b750e588 100644 --- a/sal/qa/osl/socket/osl_StreamSocket.cxx +++ b/sal/qa/osl/socket/osl_StreamSocket.cxx @@ -182,7 +182,7 @@ public: m_aCondition.reset(); t_print("#init ServerSocketThread\n"); m_id = getIdentifier( ); - //t_print("# successfully creat this ServerSocketThread %d!\n", m_id ); + //t_print("# successfully create this ServerSocketThread %d!\n", m_id ); } ~ServerSocketThread( ) @@ -243,7 +243,7 @@ public: m_csConnectorSocket( ) { m_id = getIdentifier( ); - //t_print("# successfully creat this client thread %d!\n", m_id ); + //t_print("# successfully create this client thread %d!\n", m_id ); } ~ClientSocketThread( ) @@ -374,7 +374,7 @@ public: t_print("#init ReadSocketThread\n"); m_id = getIdentifier( ); - //t_print("# successfully creat this client thread %d!\n", m_id ); + //t_print("# successfully create this client thread %d!\n", m_id ); m_aValues.createBuffer(_nBufferSize, 0); } @@ -470,7 +470,7 @@ public: t_print("#init WriteSocketThread\n"); m_id = getIdentifier( ); - //t_print("# successfully creat this server thread %d!\n", m_id ); + //t_print("# successfully create this server thread %d!\n", m_id ); m_aValues.createBuffer(_nBufferSize, _nValue); } @@ -723,7 +723,7 @@ namespace osl_StreamSocket m_saTargetSocketAddr( rtl::OUString("127.0.0.1"), IP_PORT_MYPORT9 ), m_csConnectorSocket( ) { - //t_print("# successfully creat this SendClientThread %d!\n", m_id ); + //t_print("# successfully create this SendClientThread %d!\n", m_id ); } ~SendClientThread( ) @@ -987,7 +987,7 @@ namespace osl_StreamSocket } m_id = getIdentifier( ); - //t_print("# successfully creat this client thread %d!\n", m_id ); + //t_print("# successfully create this client thread %d!\n", m_id ); } void setAddr(rtl::OString const& _sAddr) |