summary refs log tree commit diff stats
path: root/plugins/upd/upd.c
diff options
context:
space:
mode:
authorArnavion <arnavion@gmail.com>2014-09-25 00:54:38 -0700
committerArnavion <arnavion@gmail.com>2014-09-25 00:54:38 -0700
commite8fb2dde56e93c1c2641ae99f8b1988352270f55 (patch)
treef12ef59b5473ac5a1e7850267fcb77513ffb4448 /plugins/upd/upd.c
parent25c6638ce4f16f5298c93e1143cde77b636193c5 (diff)
Fixed instances of hexchat_printf that unsafely used a string parameter as a format string.
Fixes #1153
Diffstat (limited to 'plugins/upd/upd.c')
-rw-r--r--plugins/upd/upd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/upd/upd.c b/plugins/upd/upd.c
index 7ebf95bc..6fcf3be9 100644
--- a/plugins/upd/upd.c
+++ b/plugins/upd/upd.c
@@ -128,7 +128,7 @@ print_version (char *word[], char *word_eol[], void *userdata)
 
 	if (!g_ascii_strcasecmp ("HELP", word[2]))
 	{
-		hexchat_printf (ph, upd_help);
+		hexchat_printf (ph, "%s", upd_help);
 		return HEXCHAT_EAT_HEXCHAT;
 	}
 	else if (!g_ascii_strcasecmp ("SET", word[2]))
@@ -200,7 +200,7 @@ print_version (char *word[], char *word_eol[], void *userdata)
 	}
 	else
 	{
-		hexchat_printf (ph, upd_help);
+		hexchat_printf (ph, "%s", upd_help);
 		return HEXCHAT_EAT_HEXCHAT;
 	}
 }