mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
env: style(9) fix, add a space
Reported by: pstef
Fixes: 55deb0a5f0 ("service(8): use an environment more [...]")
This commit is contained in:
parent
55deb0a5f0
commit
0c1a5eaae8
1 changed files with 1 additions and 1 deletions
2
usr.bin/env/env.c
vendored
2
usr.bin/env/env.c
vendored
|
|
@ -144,7 +144,7 @@ main(int argc, char **argv)
|
|||
login_class = strchr(login_name, '/');
|
||||
if (login_class)
|
||||
*login_class++ = '\0';
|
||||
if (*login_name != '\0' && strcmp(login_name,"-") != 0) {
|
||||
if (*login_name != '\0' && strcmp(login_name, "-") != 0) {
|
||||
pw = getpwnam(login_name);
|
||||
if (pw == NULL) {
|
||||
char *endp = NULL;
|
||||
|
|
|
|||
Loading…
Reference in a new issue