diff options
author | Tupone Alfredo <tupone@gentoo.org> | 2016-02-04 21:25:23 +0100 |
---|---|---|
committer | Tupone Alfredo <tupone@gentoo.org> | 2016-02-04 21:26:02 +0100 |
commit | 4eb354eb44363f33c5f849ac35337f12ba870af5 (patch) | |
tree | 250a4877976ae9a305f16ed0c2f56d064d4585b4 /games-mud/gmudix/files | |
parent | net-analyzer/nmap: add alpha keyword (diff) | |
download | gentoo-4eb354eb44363f33c5f849ac35337f12ba870af5.tar.gz gentoo-4eb354eb44363f33c5f849ac35337f12ba870af5.tar.bz2 gentoo-4eb354eb44363f33c5f849ac35337f12ba870af5.zip |
games-mud/gmudix: Fix format-security. Bug #539104
Package-Manager: portage-2.2.26
Diffstat (limited to 'games-mud/gmudix/files')
-rw-r--r-- | games-mud/gmudix/files/gmudix-1.0-format.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games-mud/gmudix/files/gmudix-1.0-format.patch b/games-mud/gmudix/files/gmudix-1.0-format.patch new file mode 100644 index 000000000000..77314c94f950 --- /dev/null +++ b/games-mud/gmudix/files/gmudix-1.0-format.patch @@ -0,0 +1,11 @@ +--- src/gui_user.c.old 2016-02-04 21:21:15.141455597 +0100 ++++ src/gui_user.c 2016-02-04 21:21:31.016156493 +0100 +@@ -820,7 +820,7 @@ + + dialog = gtk_message_dialog_new(GTK_WINDOW(user->gui_user.g_window), + GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_INFO, +- GTK_BUTTONS_CLOSE, msg); ++ GTK_BUTTONS_CLOSE, "%s", msg); + + gtk_window_set_transient_for(GTK_WINDOW(user->gui_user.g_window), + GTK_WINDOW(dialog)); |