aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pkcs12.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2008-05-11 17:27:41 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2008-05-11 17:27:41 +0000
commitc51ed7584054c671a0ce8234d4430e90dcc41814 (patch)
treebc3ec9010098ff396727165cf0f6ba4f51fcce46 /epan/dissectors/packet-pkcs12.c
parented197306cc883f794a2225da4609889d58e0d1b8 (diff)
Fix some of the Errors/warnings detected by checkapi
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25274 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-pkcs12.c')
-rw-r--r--epan/dissectors/packet-pkcs12.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-pkcs12.c b/epan/dissectors/packet-pkcs12.c
index f1edd7aa8d..174dad2e45 100644
--- a/epan/dissectors/packet-pkcs12.c
+++ b/epan/dissectors/packet-pkcs12.c
@@ -457,7 +457,7 @@ int PBE_decrypt_data(const char *object_identifier_id _U_, tvbuff_t *encrypted_t
name = g_string_new("");
oidname = oid_resolved_from_string(object_identifier_id);
- g_string_sprintf(name, "Decrypted %s", oidname ? oidname : object_identifier_id);
+ g_string_printf(name, "Decrypted %s", oidname ? oidname : object_identifier_id);
/* add it as a new source */
add_new_data_source(actx->pinfo, clear_tvb, name->str);