https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=245314
--- Comment #1 from Mariusz Zaborski <osho...@freebsd.org> --- The problem is not with the missing rights on a descriptor. The problem is that sendto is forbidden when the "to" argument is given. static int sendit(struct thread *td, int s, struct msghdr *mp, int flags) { #ifdef CAPABILITY_MODE if (IN_CAPABILITY_MODE(td) && (mp->msg_name != NULL)) return (ECAPMODE); #endif So I guess we have to revert the part when we enter the Capability mode and fix this with the Casper service. -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ freebsd-bugs@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"