summaryrefslogtreecommitdiff
path: root/ext/odbc/birdstep.c
diff options
context:
space:
mode:
authorMatt Wilmas <mattwil@php.net>2009-06-06 02:40:49 +0000
committerMatt Wilmas <mattwil@php.net>2009-06-06 02:40:49 +0000
commit1fa3b21c15a291cf442138513849930d23e1a102 (patch)
treee31cc8bbdf698c1f6dca5a69b0a26437d08a79b1 /ext/odbc/birdstep.c
parentcb7a21a42b4f91a42617dd22562d819f9b2c2be5 (diff)
downloadphp-git-1fa3b21c15a291cf442138513849930d23e1a102.tar.gz
MFH: Fixed error message grammar:
- "cannot" instead of "can not" (meaning "also can") - "than" instead of "then" (Hint: "then" should hardly be needed; you're not telling the order in which to do something) ... plus removed a couple ending. dots
Diffstat (limited to 'ext/odbc/birdstep.c')
-rw-r--r--ext/odbc/birdstep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/odbc/birdstep.c b/ext/odbc/birdstep.c
index 83c8c87076..fa76ab97fd 100644
--- a/ext/odbc/birdstep.c
+++ b/ext/odbc/birdstep.c
@@ -369,7 +369,7 @@ PHP_FUNCTION(birdstep_exec)
}
stat = SQLExecDirect(res->hstmt,query,SQL_NTS);
if ( stat != SQL_SUCCESS && stat != SQL_SUCCESS_WITH_INFO ) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "Birdstep: Can not execute \"%s\" query",query);
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "Birdstep: Cannot execute \"%s\" query",query);
SQLFreeStmt(res->hstmt,SQL_DROP);
efree(res);
RETURN_FALSE;