aboutsummaryrefslogtreecommitdiff
path: root/src/rfc2015.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-03-22 07:37:01 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-03-22 07:37:01 +0000
commitf0314c16b1392a2021874136f80fd9350f16fe84 (patch)
tree2f46062c8e00fc907b835417724a6739bb96aba2 /src/rfc2015.c
parent951ba1bd0fd5582c507a807b5fe0dd8454b5271c (diff)
made error check strict on Japanese code conversion.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@185 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/rfc2015.c')
-rw-r--r--src/rfc2015.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rfc2015.c b/src/rfc2015.c
index 1a12d35c..769488eb 100644
--- a/src/rfc2015.c
+++ b/src/rfc2015.c
@@ -170,7 +170,7 @@ sig_status_full (gpgme_ctx_t ctx, gpgme_verify_result_t result)
ctime_val = localtime (&created);
strftime (ctime_str, sizeof (ctime_str), "%c",
ctime_val);
- ctime_str_utf8 = conv_localetodisp (ctime_str);
+ ctime_str_utf8 = conv_localetodisp (ctime_str, NULL);
g_string_sprintfa (str,
_("Signature made at %s\n"),
ctime_str_utf8);