| 1515 | |
| 1516 | #ifdef COMPAT_OLDSOCK |
| 1517 | int |
| 1518 | ogetpeername(struct thread *td, struct ogetpeername_args *uap) |
| 1519 | { |
| 1520 | |
| 1521 | /* XXX uap should have type `getpeername_args *' to begin with. */ |
| 1522 | return (getpeername1(td, (struct getpeername_args *)uap, 1)); |
| 1523 | } |
| 1524 | #endif /* COMPAT_OLDSOCK */ |
| 1525 | |
| 1526 | static int |
nothing calls this directly
no test coverage detected