From dede3c59fe83642e83c65a4aa2e42f4b2386c658 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 21 Jan 2005 03:59:41 +0000 Subject: [PATCH] fix encoding nastiness that snuck in from the copy-n-paste of error code descriptions from a web page. --- ext/pdo/pdo_sqlstate.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/pdo/pdo_sqlstate.c b/ext/pdo/pdo_sqlstate.c index 68bfeb4757..fb1ddae79e 100644 --- a/ext/pdo/pdo_sqlstate.c +++ b/ext/pdo/pdo_sqlstate.c @@ -140,9 +140,9 @@ static struct pdo_sqlstate_info err_initializer[] = { { "IM001", "Driver does not support this function" }, { "IM002", "Data source name not found and no default driver specified" }, { "IM003", "Specified driver could not be loaded" }, - { "IM004", "Driver’s SQLAllocHandle on SQL_HANDLE_ENV failed" }, - { "IM005", "Driver’s SQLAllocHandle on SQL_HANDLE_DBC failed" }, - { "IM006", "Driver’s SQLSetConnectAttr failed" }, + { "IM004", "Driver's SQLAllocHandle on SQL_HANDLE_ENV failed" }, + { "IM005", "Driver's SQLAllocHandle on SQL_HANDLE_DBC failed" }, + { "IM006", "Driver's SQLSetConnectAttr failed" }, { "IM007", "No data source or driver specified; dialog prohibited" }, { "IM008", "Dialog failed" }, { "IM009", "Unable to load translation DLL" }, -- 2.50.1