From: Jean Flach Date: Mon, 23 Nov 2015 13:12:25 +0000 (+0100) Subject: Fix possible crash in Icinga 2 Setup Wizard X-Git-Tag: v2.5.0~707 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6995b0e5ef6a921d33e37b03790b13a85786b8fe;p=icinga2 Fix possible crash in Icinga 2 Setup Wizard fixes #10708 --- diff --git a/agent/windows-setup-agent/Program.cs b/agent/windows-setup-agent/Program.cs index dea5a0f28..a36af0ef9 100644 --- a/agent/windows-setup-agent/Program.cs +++ b/agent/windows-setup-agent/Program.cs @@ -23,7 +23,7 @@ namespace Icinga public static void FatalError(Form owner, string message) { - MessageBox.Show(owner, message, owner.Text, MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show(owner, message, "Icinga 2 Setup Wizard", MessageBoxButtons.OK, MessageBoxIcon.Error); Application.Exit(); }