summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-02-23 15:42:54 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-02-23 15:42:54 +0100
commit66e5cbc55ab6923e651e1e3b32a7f26b5adaef90 (patch)
treec5000866762b2985895f9b0e4f309d22d1ba545e /connectivity
parentfe86d0ca5daeadd8bde74e27109bcb65402ce139 (diff)
Fix typo "sucessfully" -> "successfully"
Change-Id: I01c85e4d3853c44fa05acc3019bc35c56c4f655e
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/postgresql/pq_statement.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_statement.cxx b/connectivity/source/drivers/postgresql/pq_statement.cxx
index f5cdbe6af389..42ded6e07398 100644
--- a/connectivity/source/drivers/postgresql/pq_statement.cxx
+++ b/connectivity/source/drivers/postgresql/pq_statement.cxx
@@ -521,7 +521,7 @@ bool executePostgresCommand( const rtl::OString & cmd, struct CommandData *data
rtl::OStringBuffer buf( 128 );
buf.append( "executed command '" );
buf.append( cmd.getStr() );
- buf.append( "' sucessfully (" );
+ buf.append( "' successfully (" );
buf.append( *( data->pMultipleResultUpdateCount ) );
buf.append( ")" );
buf.append( ", duration=" );
@@ -672,7 +672,7 @@ bool executePostgresCommand( const rtl::OString & cmd, struct CommandData *data
rtl::OStringBuffer buf( 128 );
buf.append( RTL_CONSTASCII_STRINGPARAM("executed query '") );
buf.append( cmd );
- buf.append( RTL_CONSTASCII_STRINGPARAM("' sucessfully") );
+ buf.append( RTL_CONSTASCII_STRINGPARAM("' successfully") );
buf.append( RTL_CONSTASCII_STRINGPARAM(", duration=") );
buf.append( duration );
buf.append( RTL_CONSTASCII_STRINGPARAM("ms, returnedRows=") );