aboutsummaryrefslogtreecommitdiffstats
path: root/g10
diff options
context:
space:
mode:
Diffstat (limited to 'g10')
-rw-r--r--g10/exec.c2
-rw-r--r--g10/gpg.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/g10/exec.c b/g10/exec.c
index e54e86ccd..ec287a99f 100644
--- a/g10/exec.c
+++ b/g10/exec.c
@@ -321,7 +321,7 @@ int exec_write(struct exec_info **info,const char *program,
#if defined(HAVE_GETUID) && defined(HAVE_GETEUID)
/* There should be no way to get to this spot while still carrying
setuid privs. Just in case, bomb out if we are. */
- if(getuid()!=geteuid())
+ if ( getuid () != geteuid () )
BUG();
#endif
diff --git a/g10/gpg.c b/g10/gpg.c
index d91f46609..ded952e07 100644
--- a/g10/gpg.c
+++ b/g10/gpg.c
@@ -2012,7 +2012,7 @@ main (int argc, char **argv )
#if defined(HAVE_GETUID) && defined(HAVE_GETEUID)
/* There should be no way to get to this spot while still carrying
setuid privs. Just in case, bomb out if we are. */
- if(getuid()!=geteuid())
+ if ( getuid () != geteuid () )
BUG();
#endif