aboutsummaryrefslogtreecommitdiffstats
path: root/smime/lib/e-pkcs12.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-03-29 06:54:27 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-03-29 06:55:22 +0800
commitfa2da5acd6f45520739f747062d04cdb866b2428 (patch)
tree4716aebb3c2a193cc3cd398d2878d0e60aa2ee1e /smime/lib/e-pkcs12.c
parent68581a10047876899dc97cb30777435e1f42a5a1 (diff)
downloadgsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.gz
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.zst
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.zip
Fix mismatched quotes.
Diffstat (limited to 'smime/lib/e-pkcs12.c')
-rw-r--r--smime/lib/e-pkcs12.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/smime/lib/e-pkcs12.c b/smime/lib/e-pkcs12.c
index af8aedae9d..7f5b49d37f 100644
--- a/smime/lib/e-pkcs12.c
+++ b/smime/lib/e-pkcs12.c
@@ -167,7 +167,7 @@ input_to_decoder (SEC_PKCS12DecoderContext *dcx, const gchar *path, GError **err
fp = g_fopen (path, "rb");
if (!fp) {
/* XXX gerror */
- printf ("couldn't open `%s'\n", path);
+ printf ("couldn't open '%s'\n", path);
return FALSE;
}
@@ -319,7 +319,7 @@ e_pkcs12_import_from_file (EPKCS12 *pkcs12, const gchar *path, GError **error)
gboolean wantRetry;
PK11SlotInfo *slot;
- printf ("importing pkcs12 from `%s'\n", path);
+ printf ("importing pkcs12 from '%s'\n", path);
slot = PK11_GetInternalKeySlot();