summaryrefslogtreecommitdiff
path: root/src/win32/Config.cs
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-11-01 16:07:18 -0400
committerAdam <Adam@anope.org>2010-11-01 16:07:18 -0400
commit3edc6d70b9b7d3da642f46c90a876a606ba76ab3 (patch)
tree4f7484ec56851895c23761f1c85f74d81d26e571 /src/win32/Config.cs
parent9db85375ee831885aceeba9e61b118ac7c4247a7 (diff)
Fixed building anopesmtp on Windows, fixed some cmake problems with calculate_depends, and fixed building without gettext
Diffstat (limited to 'src/win32/Config.cs')
-rw-r--r--src/win32/Config.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/win32/Config.cs b/src/win32/Config.cs
index fd1cbbfda..858aef7e8 100644
--- a/src/win32/Config.cs
+++ b/src/win32/Config.cs
@@ -220,7 +220,8 @@ namespace Config
if (CacheResponse != null && (InstallerResponse == null || InstallerResponse.Length < 1))
InstallerResponse = CacheResponse;
- if (InstallerResponse == null || InstallerResponse.Length < 1)
+ // Question 4 is optional
+ if (i != 4 && (InstallerResponse == null || InstallerResponse.Length < 1))
{
Console.WriteLine("Invlaid option");
--i;