| 1424 | |
| 1425 | #ifdef COMPAT_OLDSOCK |
| 1426 | int |
| 1427 | ogetsockname(struct thread *td, struct getsockname_args *uap) |
| 1428 | { |
| 1429 | |
| 1430 | return (getsockname1(td, uap, 1)); |
| 1431 | } |
| 1432 | #endif /* COMPAT_OLDSOCK */ |
| 1433 | |
| 1434 | /* |
nothing calls this directly
no test coverage detected