From 096e7457ec636bcfcf128678660eb2f2e19f113a Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Tue, 5 Jun 2012 19:29:22 +0200 Subject: Change all quotes in strings and comments to the new GNU standard. The asymmetric quotes used by GNU in the past (`...') don't render nicely on modern systems. We now use two \x27 characters ('...'). The proper solution would be to use the correct Unicode symmetric quotes here. However this has the disadvantage that the system requires Unicode support. We don't want that today. If Unicode is available a generated po file can be used to output proper quotes. A simple sed script like the one used for en@quote is sufficient to change them. The changes have been done by applying sed -i "s/\`\([^'\`]*\)'/'\1'/g" to most files and fixing obvious problems by hand. The msgid strings in the po files were fixed with a similar command. --- sm/certdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sm/certdump.c') diff --git a/sm/certdump.c b/sm/certdump.c index 9d9feb07d..21a5e292c 100644 --- a/sm/certdump.c +++ b/sm/certdump.c @@ -183,7 +183,7 @@ gpgsm_dump_cert (const char *text, ksba_cert_t cert) char *dn; ksba_isotime_t t; - log_debug ("BEGIN Certificate `%s':\n", text? text:""); + log_debug ("BEGIN Certificate '%s':\n", text? text:""); if (cert) { sexp = ksba_cert_get_serial (cert); -- cgit v1.2.3