diff options
author | Adam <Adam@anope.org> | 2010-11-01 16:07:18 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-11-01 16:07:18 -0400 |
commit | 3edc6d70b9b7d3da642f46c90a876a606ba76ab3 (patch) | |
tree | 4f7484ec56851895c23761f1c85f74d81d26e571 /src/win32/Config.cs | |
parent | 9db85375ee831885aceeba9e61b118ac7c4247a7 (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.cs | 3 |
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;
|