summaryrefslogtreecommitdiffstats
path: root/g10/exec.c
diff options
context:
space:
mode:
authorDavid Shaw <dshaw@jabberwocky.com>2002-07-25 20:08:09 +0200
committerDavid Shaw <dshaw@jabberwocky.com>2002-07-25 20:08:09 +0200
commit9ac6821b46ddf3e7f212b6778a011c7ecce11652 (patch)
tree8efc6e4925be765c9f29956ea9d5caaae4eebfd3 /g10/exec.c
parent* random.c: "warning" -> "WARNING" (diff)
downloadgnupg2-9ac6821b46ddf3e7f212b6778a011c7ecce11652.tar.xz
gnupg2-9ac6821b46ddf3e7f212b6778a011c7ecce11652.zip
* exec.c, export.c, import.c, keyedit.c, keyserver.c, misc.c: "Warning" ->
"WARNING"
Diffstat (limited to 'g10/exec.c')
-rw-r--r--g10/exec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/g10/exec.c b/g10/exec.c
index db440f656..6b0a10cf1 100644
--- a/g10/exec.c
+++ b/g10/exec.c
@@ -587,19 +587,19 @@ int exec_finish(struct exec_info *info)
if(info->tempfile_in)
{
if(unlink(info->tempfile_in)==-1)
- log_info(_("Warning: unable to remove tempfile (%s) \"%s\": %s\n"),
+ log_info(_("WARNING: unable to remove tempfile (%s) \"%s\": %s\n"),
"in",info->tempfile_in,strerror(errno));
}
if(info->tempfile_out)
{
if(unlink(info->tempfile_out)==-1)
- log_info(_("Warning: unable to remove tempfile (%s) \"%s\": %s\n"),
+ log_info(_("WARNING: unable to remove tempfile (%s) \"%s\": %s\n"),
"out",info->tempfile_out,strerror(errno));
}
if(rmdir(info->tempdir)==-1)
- log_info(_("Warning: unable to remove temp directory \"%s\": %s\n"),
+ log_info(_("WARNING: unable to remove temp directory \"%s\": %s\n"),
info->tempdir,strerror(errno));
}