Author: byterock
Date: Tue Jul 22 10:48:35 2008
New Revision: 11563

Modified:
   dbd-oracle/trunk/Changes
   dbd-oracle/trunk/Oracle.xs

Log:
Fix for a typo in oracle.xs from Milo van der Leij 

Modified: dbd-oracle/trunk/Changes
==============================================================================
--- dbd-oracle/trunk/Changes    (original)
+++ dbd-oracle/trunk/Changes    Tue Jul 22 10:48:35 2008
@@ -1,4 +1,5 @@
 =head1 Changes in DBD-Oracle 1.22(svn rev xxxx)  2008 
+  Fix for a typo in oracle.xs from Milo van der Leij 
   Fix for bugs on SPs with Lobs reported by Martin Evans, Fix by J Scoles
   Changed the way Ping works rather than using prepare and execute it now 
makes a single round trip call to DB by John Scoles
   Fix for rt.cpan.org Ticket #=37501 fail HP-UX Itanium 11.31 makefile also 
added the OS and version to the output of the Makefile.PL for easier debugging. 
from John Scoles and Rich Roemer 

Modified: dbd-oracle/trunk/Oracle.xs
==============================================================================
--- dbd-oracle/trunk/Oracle.xs  (original)
+++ dbd-oracle/trunk/Oracle.xs  Tue Jul 22 10:48:35 2008
@@ -456,7 +456,7 @@
     CODE:
     OCILobGetLength_log_stat(imp_dbh->svchp, imp_dbh->errhp, locator, &len, 
status);
     if (status != OCI_SUCCESS) {
-        oci_error(dbh, imp_dbh->errhp, status, "OCILobTrim");
+        oci_error(dbh, imp_dbh->errhp, status, "OCILobGetLength");
        ST(0) = &sv_undef;
     }
     else {

Reply via email to