diff options
| author | Warner Losh <imp@FreeBSD.org> | 2023-03-14 15:25:04 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2023-03-25 17:06:13 +0000 |
| commit | 72f501d07a02028a51c15614f7ac4482ce8345bd (patch) | |
| tree | 00d1e60809593ce194dbd540fed9393412f321fb /lib/libc/stdlib | |
| parent | 60931207768437c46cbc80df1b6901f8246dc57b (diff) | |
Diffstat (limited to 'lib/libc/stdlib')
| -rw-r--r-- | lib/libc/stdlib/getenv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/getenv.c b/lib/libc/stdlib/getenv.c index 86a846d58c69..001b9669bda9 100644 --- a/lib/libc/stdlib/getenv.c +++ b/lib/libc/stdlib/getenv.c @@ -455,8 +455,8 @@ char * secure_getenv(const char *name) { if (issetugid()) - return NULL; - return getenv(name); + return (NULL); + return (getenv(name)); } /* |
