diff options
Diffstat (limited to 'src/ext/Http')
-rw-r--r-- | src/ext/Http/wixext/HttpCompiler.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ext/Http/wixext/HttpCompiler.cs b/src/ext/Http/wixext/HttpCompiler.cs index 6c572470..51fdfebc 100644 --- a/src/ext/Http/wixext/HttpCompiler.cs +++ b/src/ext/Http/wixext/HttpCompiler.cs | |||
@@ -81,7 +81,6 @@ namespace WixToolset.Http | |||
81 | string store = null; | 81 | string store = null; |
82 | string thumbprint = null; | 82 | string thumbprint = null; |
83 | var handleExisting = HandleExisting.Replace; | 83 | var handleExisting = HandleExisting.Replace; |
84 | string handleExistingValue = null; | ||
85 | 84 | ||
86 | foreach (var attrib in node.Attributes()) | 85 | foreach (var attrib in node.Attributes()) |
87 | { | 86 | { |
@@ -96,7 +95,7 @@ namespace WixToolset.Http | |||
96 | appId = this.ParseHelper.GetAttributeValue(sourceLineNumbers, attrib); | 95 | appId = this.ParseHelper.GetAttributeValue(sourceLineNumbers, attrib); |
97 | break; | 96 | break; |
98 | case "HandleExisting": | 97 | case "HandleExisting": |
99 | handleExistingValue = this.ParseHelper.GetAttributeValue(sourceLineNumbers, attrib); | 98 | var handleExistingValue = this.ParseHelper.GetAttributeValue(sourceLineNumbers, attrib); |
100 | switch (handleExistingValue) | 99 | switch (handleExistingValue) |
101 | { | 100 | { |
102 | case "replace": | 101 | case "replace": |