From 714b6bb7a3b85a44556972f4ade06a13d1a0aaac Mon Sep 17 00:00:00 2001 From: Avery Pennarun Date: Fri, 14 Nov 2008 16:29:28 -0500 Subject: [PATCH] Fix recently-broken schemamatic unit tests. VxSchemaElement.create() was losing the value of the 'encrypted' parameter. --- versaplexd/vxschema.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versaplexd/vxschema.cs b/versaplexd/vxschema.cs index c13b512..303c1f7 100644 --- a/versaplexd/vxschema.cs +++ b/versaplexd/vxschema.cs @@ -52,7 +52,7 @@ internal class VxSchemaElement : IComparable if (type == "Table") return new VxSchemaTable(name, text); else - return new VxSchemaElement(type, name, text, false); + return new VxSchemaElement(type, name, text, encrypted); } protected VxSchemaElement(string newtype, string newname, -- 2.11.4.GIT