1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* exec.c, export.c, import.c, keyedit.c, keyserver.c, misc.c: "Warning" ->

"WARNING"
This commit is contained in:
David Shaw 2002-07-25 18:08:09 +00:00
parent 36d5779e82
commit 9ac6821b46
7 changed files with 18 additions and 13 deletions

View file

@ -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));
}