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

@ -383,7 +383,7 @@ check_permissions(const char *path,int extension,int checkonly)
(extension && statbuf.st_uid!=0 && statbuf.st_uid!=getuid()))
{
if(!checkonly)
log_info(_("Warning: unsafe ownership on %s \"%s\"\n"),
log_info(_("WARNING: unsafe ownership on %s \"%s\"\n"),
isdir?"directory":extension?"extension":"file",path);
goto end;
}
@ -415,7 +415,7 @@ check_permissions(const char *path,int extension,int checkonly)
m_free(dir);
if(!checkonly)
log_info(_("Warning: unsafe permissions on %s \"%s\"\n"),
log_info(_("WARNING: unsafe permissions on %s \"%s\"\n"),
isdir?"directory":extension?"extension":"file",path);
goto end;
}