talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 904dc0783c35e3438b3e7f4252302a98923e9cb8
parent 66d1996ab05769926ac5ce5fdaf1b5377ea680f4
Author: Christian Hesse <mail@eworm.de>
Date:   Fri,  2 Oct 2015 15:40:46 +0200

msg is not const

Signed-off-by: Christian Hesse <mail@eworm.de>

Diffstat:
Msrc/gtk/gtkutils.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gtk/gtkutils.c b/src/gtk/gtkutils.c @@ -1915,7 +1915,7 @@ static void auto_configure_done(const gchar *hostname, gint port, gboolean ssl, gtk_label_set_text(data->info_label, _("Done.")); } else { - const gchar *msg; + gchar *msg; switch (data->resolver_error) { case G_RESOLVER_ERROR_NOT_FOUND: msg = g_strdup(_("Failed: no service record found."));