mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
common: Portability fix for logging.c.
* common/logging.c (S_IRGRP, S_IWGRP, S_IROTH, S_IWOTH): Avoid duplicated definition. Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
parent
a1446163d5
commit
456c5cdb2d
@ -64,11 +64,15 @@
|
||||
#include "sysutils.h"
|
||||
|
||||
#ifdef HAVE_W32_SYSTEM
|
||||
# ifndef S_IRWXG
|
||||
# define S_IRGRP S_IRUSR
|
||||
# define S_IROTH S_IRUSR
|
||||
# define S_IWGRP S_IWUSR
|
||||
# endif
|
||||
# ifndef S_IRWXO
|
||||
# define S_IROTH S_IRUSR
|
||||
# define S_IWOTH S_IWUSR
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef HAVE_W32CE_SYSTEM
|
||||
|
Loading…
x
Reference in New Issue
Block a user