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
committerMichael Meeks <michael.meeks@novell.com>2010-04-07 19:25:57 +0800
commit1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2 (patch)
tree258829f55f8c6edf1b3ee3da595ff092ef52850e /smime/lib/e-pkcs12.c
parentdfdb970ac69e3058418875aa043f9d2a17ea5945 (diff)
downloadgsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.gz
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.bz2
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.lz
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.xz
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.zst
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.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();