Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/pidgin-opensteamworks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Ospald <hasufell@posteo.de>2016-03-12 20:29:45 +0300
committerJulian Ospald <hasufell@posteo.de>2016-03-12 20:47:04 +0300
commita2e9619c0d3e6866b137875b1fff3ec8ce590cd5 (patch)
treeb5b52fa9f7dd330689c2ce6746b3568348d92a19
parent08cec38a7a509982e9affc917358033a976dfe16 (diff)
Fix format security warning
-rw-r--r--steam-mobile/steam_rsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/steam-mobile/steam_rsa.c b/steam-mobile/steam_rsa.c
index 650baa9..03d757c 100644
--- a/steam-mobile/steam_rsa.c
+++ b/steam-mobile/steam_rsa.c
@@ -561,7 +561,7 @@ steam_encrypt_password(const gchar *modulus_str, const gchar *exponent_str, cons
{
unsigned long error_num = ERR_get_error();
char *error_str = ERR_error_string(error_num, NULL);
- purple_debug_error("steam", error_str);
+ purple_debug_error("steam", "%s", error_str);
RSA_free(rsa);
g_free(encrypted);
return NULL;