style(9): wrap at 80 columns.

This commit is contained in:
Nate Lawson 2004-02-12 05:05:56 +00:00
parent 97054a769f
commit aa0b7126ba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125728

View File

@ -109,7 +109,8 @@ sigstring_to_signum(char *sig)
if (strncasecmp(sig, "sig", 3) == 0)
sig += 3;
for (n = 1; n < sys_nsig; n++)
if (sys_signame[n] && strcasecmp(sys_signame[n], sig) == 0)
if (sys_signame[n] &&
strcasecmp(sys_signame[n], sig) == 0)
return (n);
}
return (-1);
@ -413,8 +414,9 @@ dotrap(void)
gotsig[i] = 0;
if (trap[i]) {
/*
* Ignore SIGCHLD to avoid infinite recursion
* if the trap action does a fork.
* Ignore SIGCHLD to avoid infinite
* recursion if the trap action does
* a fork.
*/
if (i == SIGCHLD)
ignore_sigchld++;