diff options
Diffstat (limited to 'g10/exec.c')
-rw-r--r-- | g10/exec.c | 2 |
1 files changed, 1 insertions, 1 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 |