]> granicus.if.org Git - postgresql/commitdiff
Move from strcmp to strncmp to be more tolerant for changes to the parser.
authorMichael Meskes <meskes@postgresql.org>
Sat, 1 Nov 2008 19:53:35 +0000 (19:53 +0000)
committerMichael Meskes <meskes@postgresql.org>
Sat, 1 Nov 2008 19:53:35 +0000 (19:53 +0000)
src/interfaces/ecpg/ecpglib/misc.c

index 03956f11dc226f13c0076fd20df71b6b9416e6fb..dbeb448f213c6a333c1cef4fa1f6db60f8927926 100644 (file)
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/misc.c,v 1.42 2008/05/16 15:20:03 petere Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/misc.c,v 1.43 2008/11/01 19:53:35 meskes Exp $ */
 
 #define POSTGRES_ECPG_INTERNAL
 #include "postgres_fe.h"
@@ -204,7 +204,7 @@ ECPGtrans(int lineno, const char *connection_name, const char *transaction)
                PQclear(res);
        }
 
-       if (strcmp(transaction, "commit") == 0 || strcmp(transaction, "rollback") == 0)
+       if (strncmp(transaction, "commit", 6) == 0 || strncmp(transaction, "rollback", 8) == 0)
                con->committed = true;
        else
                con->committed = false;