aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-09-01 20:31:35 -0400
committerBob Arnson <bob@firegiant.com>2020-09-01 20:33:59 -0400
commitcb6bd363baef3a7d458dfda053b94131420822f0 (patch)
treee4e9d6dab05754caafccb3442bdcefc00387c9e8 /src/WixToolset.Core.WindowsInstaller/Bind
parente1ff7245ee176c18bd0b773a7e11df6bb95d7b7e (diff)
downloadwix-cb6bd363baef3a7d458dfda053b94131420822f0.tar.gz
wix-cb6bd363baef3a7d458dfda053b94131420822f0.tar.bz2
wix-cb6bd363baef3a7d458dfda053b94131420822f0.zip
Fix typo.
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
index de3123ee..e1e40f4a 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
@@ -606,7 +606,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
606 606
607 private void AddIniFileSymbol(IniFileSymbol symbol) 607 private void AddIniFileSymbol(IniFileSymbol symbol)
608 { 608 {
609 var tableName = (InifFileActionType.AddLine == symbol.Action || InifFileActionType.AddTag == symbol.Action || InifFileActionType.CreateLine == symbol.Action) ? "IniFile" : "RemoveIniFile"; 609 var tableName = (IniFileActionType.AddLine == symbol.Action || IniFileActionType.AddTag == symbol.Action || IniFileActionType.CreateLine == symbol.Action) ? "IniFile" : "RemoveIniFile";
610 610
611 var name = symbol.FileName; 611 var name = symbol.FileName;
612 if (null == symbol.ShortFileName && null != name && !Common.IsValidShortFilename(name, false)) 612 if (null == symbol.ShortFileName && null != name && !Common.IsValidShortFilename(name, false))