Diff Detail
Diff Detail
- Lint
Lint Skipped - Unit
Tests Skipped
Event Timeline
| sys/kern/uipc_socket.c | ||
|---|---|---|
| 2550 | This is to restore the behavior of r255030? This does do that, but it's not quite obvious. You could also do something like: if (tv.tv_sec > INT32_MAX)
val = SBT_MAX;
else
val = tvtosbt(tv);I think that might be clearer (and more closely match the prior behavior) | |