Remove extra parenthesis in last commit.

Nitpicked by:	ru
This commit is contained in:
Gleb Smirnoff 2006-09-05 12:22:54 +00:00
parent 03b33e9928
commit 23ebab416c
2 changed files with 4 additions and 4 deletions

View File

@ -189,9 +189,9 @@ sysctl_maxtcptw(SYSCTL_HANDLER_ARGS)
new = maxtcptw;
error = sysctl_handle_int(oidp, &new, sizeof(int), req);
if (error == 0 && req->newptr) {
if (new > maxtcptw) {
if (new > maxtcptw)
maxtcptw = new;
} else
else
error = EINVAL;
}
return (error);

View File

@ -189,9 +189,9 @@ sysctl_maxtcptw(SYSCTL_HANDLER_ARGS)
new = maxtcptw;
error = sysctl_handle_int(oidp, &new, sizeof(int), req);
if (error == 0 && req->newptr) {
if (new > maxtcptw) {
if (new > maxtcptw)
maxtcptw = new;
} else
else
error = EINVAL;
}
return (error);