summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/os_posix/os_priv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/os_posix/os_priv.c')
-rw-r--r--src/third_party/wiredtiger/src/os_posix/os_priv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/third_party/wiredtiger/src/os_posix/os_priv.c b/src/third_party/wiredtiger/src/os_posix/os_priv.c
index 7f476c41c5a..07c603c0b68 100644
--- a/src/third_party/wiredtiger/src/os_posix/os_priv.c
+++ b/src/third_party/wiredtiger/src/os_posix/os_priv.c
@@ -10,11 +10,11 @@
/*
* __wt_has_priv --
- * Return if the process has special privileges, defined as having
- * different effective and read UIDs or GIDs.
+ * Return if the process has special privileges, defined as having different effective and read
+ * UIDs or GIDs.
*/
bool
__wt_has_priv(void)
{
- return (getuid() != geteuid() || getgid() != getegid());
+ return (getuid() != geteuid() || getgid() != getegid());
}