secure_getenv: Add () around return values

Style only change, no functional change intended.

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2023-03-14 09:25:04 -06:00
parent 6093120776
commit 72f501d07a

View File

@ -455,8 +455,8 @@ char *
secure_getenv(const char *name) secure_getenv(const char *name)
{ {
if (issetugid()) if (issetugid())
return NULL; return (NULL);
return getenv(name); return (getenv(name));
} }
/* /*