aboutsummaryrefslogtreecommitdiffstats
path: root/g10/exec.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2004-10-28 02:14:06 +0000
committerDavid Shaw <[email protected]>2004-10-28 02:14:06 +0000
commitd89c701acb2e6dfd0f6ada6742a6057ad4698dcb (patch)
treee110b2492c984fc9f371d9582ce8abb4ad0fb85c /g10/exec.c
parent* delkey.c, export.c, keyedit.c, pkclist.c, revoke.c, skclist.c: Fix a few (diff)
downloadgnupg-d89c701acb2e6dfd0f6ada6742a6057ad4698dcb.tar.gz
gnupg-d89c701acb2e6dfd0f6ada6742a6057ad4698dcb.zip
* keyring.c: Make some strings translatable.
* exec.c, sign.c: Change "can't open file" to "can't open" and "can't create file" to "can't create" to be consistent with other strings so we don't have to translate both.
Diffstat (limited to 'g10/exec.c')
-rw-r--r--g10/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/exec.c b/g10/exec.c
index 408f6d7bf..0ba85a564 100644
--- a/g10/exec.c
+++ b/g10/exec.c
@@ -486,7 +486,7 @@ int exec_write(struct exec_info **info,const char *program,
(*info)->tochild=fopen((*info)->tempfile_in,binary?"wb":"w");
if((*info)->tochild==NULL)
{
- log_error(_("can't create file `%s': %s\n"),
+ log_error(_("can't create `%s': %s\n"),
(*info)->tempfile_in,strerror(errno));
ret=G10ERR_WRITE_FILE;
goto fail;