diff options
author | Stef Walter <stefw@gnome.org> | 2012-11-07 09:19:19 +0100 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2012-11-09 12:15:39 +0100 |
commit | a901798e025389f3c4414406b6144687f85aa552 (patch) | |
tree | fc75a8a75ecbe1a273bbd78cf88ed7495fc48430 /pkcs11 | |
parent | 6beae07105e368a529db85b227f60fa4b60bb397 (diff) | |
download | gnome-keyring-a901798e025389f3c4414406b6144687f85aa552.tar.gz |
egg-hex: Use a full string as the hex delimiter
So that we can better print out escape encodings in our test data.
Diffstat (limited to 'pkcs11')
-rw-r--r-- | pkcs11/gnome2-store/gkm-gnome2-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkcs11/gnome2-store/gkm-gnome2-file.c b/pkcs11/gnome2-store/gkm-gnome2-file.c index f933b769..582366f2 100644 --- a/pkcs11/gnome2-store/gkm-gnome2-file.c +++ b/pkcs11/gnome2-store/gkm-gnome2-file.c @@ -1014,7 +1014,7 @@ dump_attributes (gpointer key, gpointer value, gpointer user_data) if (attr->pValue == NULL) text = g_strdup ("NULL"); else - text = egg_hex_encode_full (attr->pValue, attr->ulValueLen, TRUE, ' ', 1); + text = egg_hex_encode_full (attr->pValue, attr->ulValueLen, TRUE, " ", 1); g_print ("\t0x%08x: %s\n", (guint)*type, text); g_free (text); |