From 657dcf3b4b37127ac88682ebbbfd78ca7ff950d5 Mon Sep 17 00:00:00 2001 From: Hiroshi Inoue Date: Sat, 23 Oct 2010 03:33:19 +0000 Subject: [PATCH] Change to use 'if' instead of an inappropriate 'else if'. --- convert.c | 2 +- version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/convert.c b/convert.c index 3b110b9..169805f 100644 --- a/convert.c +++ b/convert.c @@ -2959,7 +2959,7 @@ inolog("type=%d concur=%d\n", stmt->options.cursor_type, stmt->options.scroll_co qp->flags |= FLGP_USING_CURSOR; qp->declare_pos = qb->npos; } - else if (SQL_CONCUR_READ_ONLY != stmt->options.scroll_concurrency) + if (SQL_CONCUR_READ_ONLY != stmt->options.scroll_concurrency) { qb->flags |= FLGB_CREATE_KEYSET; if (SQL_CURSOR_KEYSET_DRIVEN == stmt->options.cursor_type) diff --git a/version.h b/version.h index ec415d1..1b95f8c 100644 --- a/version.h +++ b/version.h @@ -12,6 +12,6 @@ #define POSTGRESDRIVERVERSION "09.00.0102" #define POSTGRES_RESOURCE_VERSION "09.00.0102\0" #define PG_DRVFILE_VERSION 9,0,01,02 -#define PG_BUILD_VERSION "201010230001" +#define PG_BUILD_VERSION "201010230003" #endif -- 2.39.5