aboutsummaryrefslogtreecommitdiffstats
path: root/cipher
diff options
context:
space:
mode:
Diffstat (limited to 'cipher')
-rw-r--r--cipher/idea-stub.c2
-rw-r--r--cipher/rndunix.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/cipher/idea-stub.c b/cipher/idea-stub.c
index 5c2bd11a0..8996c7596 100644
--- a/cipher/idea-stub.c
+++ b/cipher/idea-stub.c
@@ -119,7 +119,7 @@ load_module (const char *name)
#ifndef _WIN32
/* Make sure we are not setuid. */
- if (getuid() != geteuid())
+ if (getuid () != geteuid ())
log_bug("trying to load an extension while still setuid\n");
#endif
diff --git a/cipher/rndunix.c b/cipher/rndunix.c
index 3cc71cf0b..75cf22ed0 100644
--- a/cipher/rndunix.c
+++ b/cipher/rndunix.c
@@ -804,7 +804,7 @@ rndunix_gather_random( void (*add)(const void*, size_t, int), int requester,
if( !gatherer_pid ) {
/* make sure we are not setuid */
- if( getuid() != geteuid() )
+ if ( getuid () != geteuid () )
BUG();
/* time to start the gatherer process */
if( pipe( pipedes ) ) {