From fa2da5acd6f45520739f747062d04cdb866b2428 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sun, 28 Mar 2010 18:54:27 -0400 Subject: Fix mismatched quotes. --- smime/gui/component.c | 2 +- smime/lib/e-cert-db.c | 2 +- smime/lib/e-pkcs12.c | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'smime') diff --git a/smime/gui/component.c b/smime/gui/component.c index 48546bf75f..0b7a679ee2 100644 --- a/smime/gui/component.c +++ b/smime/gui/component.c @@ -43,7 +43,7 @@ smime_pk11_passwd (ECertDB *db, PK11SlotInfo* slot, gboolean retry, gchar **pass g_strchomp (slot_name); - prompt = g_strdup_printf (_("Enter the password for `%s'"), slot_name); + prompt = g_strdup_printf (_("Enter the password for '%s'"), slot_name); g_free (slot_name); *passwd = e_passwords_ask_password (_("Enter password"), "SMIME-PKCS11", "", diff --git a/smime/lib/e-cert-db.c b/smime/lib/e-cert-db.c index ce22dc8537..73f184ab17 100644 --- a/smime/lib/e-cert-db.c +++ b/smime/lib/e-cert-db.c @@ -1189,7 +1189,7 @@ e_cert_db_import_certs_from_file (ECertDB *cert_db, rv = FALSE; } else { - printf ("importing %d bytes from `%s'\n", bytes_read, file_path); + printf ("importing %d bytes from '%s'\n", bytes_read, file_path); switch (cert_type) { case E_CERT_CA: 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(); -- cgit v1.2.3