Changeset: f088e35112c5 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=f088e35112c5 Modified Files: tools/merovingian/daemon/forkmserver.c Branch: Dec2016 Log Message:
Make sure we are using ALL properties we just read from the file This fixes bug 6320 diffs (12 lines): diff --git a/tools/merovingian/daemon/forkmserver.c b/tools/merovingian/daemon/forkmserver.c --- a/tools/merovingian/daemon/forkmserver.c +++ b/tools/merovingian/daemon/forkmserver.c @@ -546,7 +546,7 @@ forkMserver(char *database, sabdb** stat if (list->val != NULL && !defaultProperty(list->key)) { argv[c++] = "--set"; snprintf(property_other, sizeof(property_other), "%s=%s", list->key, list->val); - argv[c++] = property_other; + argv[c++] = strdup(property_other); } list++; } _______________________________________________ checkin-list mailing list checkin-list@monetdb.org https://www.monetdb.org/mailman/listinfo/checkin-list