Fix style bugs in the previous commit (which weren't in bde's patch)

This commit is contained in:
Dag-Erling Smørgrav 2003-03-11 11:35:24 +00:00
parent 57c190a31f
commit 7a179eb40f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=112087

View File

@ -130,7 +130,6 @@ main(int argc, char *argv[])
statusp, child_pid, child_pgrp, ret_pid, setmaclabel;
char *username, *cleanenv, *class, shellbuf[MAXPATHLEN];
const char *p, *user, *shell, *mytty, **nargv;
struct sigaction sa, sa_int, sa_quit;
shell = class = cleanenv = NULL;
@ -329,7 +328,6 @@ main(int argc, char *argv[])
sigaction(SIGQUIT, &sa, &sa_quit);
sa.sa_handler = SIG_DFL;
sigaction(SIGTSTP, &sa, NULL);
statusp = 1;
child_pid = fork();
switch (child_pid) {