Changeset: 111de220fa00 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/111de220fa00
Modified Files:
        clients/odbc/driver/SQLConnect.c
Branch: odbc-tls
Log Message:

Separate with ";", not "; "


diffs (21 lines):

diff --git a/clients/odbc/driver/SQLConnect.c b/clients/odbc/driver/SQLConnect.c
--- a/clients/odbc/driver/SQLConnect.c
+++ b/clients/odbc/driver/SQLConnect.c
@@ -175,7 +175,7 @@ buildConnectionString(const char *dsn, c
        if (dsn) {
                if (reallocprintf(&buf, &pos, &cap, "DSN=%s", dsn) < 0)
                        goto end;
-               sep = "; ";
+               sep = ";";
        }
 
        for (int i = 0; i < attr_setting_count; i++) {
@@ -210,7 +210,7 @@ buildConnectionString(const char *dsn, c
                if (show_this) {
                        if (reallocprintf(&buf, &pos, &cap, "%s%s=%s", sep, 
entry->name, value) < 0)
                                goto end;
-                       sep = "; ";
+                       sep = ";";
                }
        }
 
_______________________________________________
checkin-list mailing list -- checkin-list@monetdb.org
To unsubscribe send an email to checkin-list-le...@monetdb.org

Reply via email to