summaryrefslogtreecommitdiff
path: root/options.c
diff options
context:
space:
mode:
authorBruce Momjian2001-03-23 04:49:58 +0000
committerBruce Momjian2001-03-23 04:49:58 +0000
commit9e36771723ec64b072f4b52e0fddf2edf1ec2544 (patch)
tree66c72e63e90049519c77d1a4de655cc0cc71a1c7 /options.c
parent889d33809abdfb5924c0bf34b9c15ecba894333a (diff)
Fix comments that were mis-wrapped, for Tom Lane.
Diffstat (limited to 'options.c')
-rw-r--r--options.c29
1 files changed, 20 insertions, 9 deletions
diff --git a/options.c b/options.c
index 3dc3a40..85844ed 100644
--- a/options.c
+++ b/options.c
@@ -81,16 +81,27 @@ set_statement_option(ConnectionClass *conn,
stmt->options.scroll_concurrency = vParam;
break;
- /*
- * if (globals.lie) { if (conn)
- * conn->stmtOptions.scroll_concurrency = vParam; if (stmt)
- * stmt->options.scroll_concurrency = vParam; } else {
- *
- * if (conn) conn->stmtOptions.scroll_concurrency =
- * SQL_CONCUR_READ_ONLY; if (stmt)
- * stmt->options.scroll_concurrency = SQL_CONCUR_READ_ONLY;
+ /*----------
+ * if (globals.lie)
+ * {
+ * if (conn)
+ * conn->stmtOptions.scroll_concurrency = vParam;
+ * if (stmt)
+ * stmt->options.scroll_concurrency = vParam;
+ * } else {
+ * if (conn)
+ * conn->stmtOptions.scroll_concurrency =
+ * SQL_CONCUR_READ_ONLY;
+ * if (stmt)
+ * stmt->options.scroll_concurrency =
+ * SQL_CONCUR_READ_ONLY;
*
- * if (vParam != SQL_CONCUR_READ_ONLY) changed = TRUE; } break;
+ * if (vParam != SQL_CONCUR_READ_ONLY)
+ * changed = TRUE;
+ * }
+ * break;
+ * }
+ *----------
*/
case SQL_CURSOR_TYPE: