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:
parent
36d5779e82
commit
9ac6821b46
7 changed files with 18 additions and 13 deletions
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue