Skip to content

Commit

Permalink
Applied review
Browse files Browse the repository at this point in the history
  • Loading branch information
yitam committed Mar 25, 2020
1 parent d0a76e9 commit 8733377
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/sqlsrv/conn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ void __cdecl sqlsrv_conn_dtor( _Inout_ zend_resource *rsrc TSRMLS_DC )
ss_sqlsrv_conn *conn = static_cast<ss_sqlsrv_conn*>( rsrc->ptr );
SQLSRV_ASSERT( conn != NULL, "sqlsrv_conn_dtor: connection was null");

conn->set_func("sqlsrv_conn_dtor");
conn->set_func(__func__);

// close all statements associated with the connection.
sqlsrv_conn_close_stmts( conn TSRMLS_CC );
Expand Down
2 changes: 1 addition & 1 deletion test/functional/sqlsrv/sqlsrv_connect_log_to_file.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--TEST--
Tset functions return FALSE for errors with logging
Test functions return FALSE for errors with logging
--DESCRIPTION--
Similar to sqlsrv_connect_logs.phpt but this time test logging to a log file
--SKIPIF--
Expand Down
2 changes: 1 addition & 1 deletion test/functional/sqlsrv/sqlsrv_connect_logs.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--TEST--
Tset functions return FALSE for errors with logging
Test functions return FALSE for errors with logging
--DESCRIPTION--
Similar to sqlsrv_connect.phpt but also test different settings of logging activities
--SKIPIF--
Expand Down

0 comments on commit 8733377

Please sign in to comment.