https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=255339
--- Comment #8 from Jung-uk Kim <j...@freebsd.org> --- It seems it is possible to trigger this assertion if I just close stdout. % cat test_logger.c #include <unistd.h> int main(void) { close(STDOUT_FILENO); return (execl("/usr/bin/logger", "-t", "program", "test", NULL)); } % cc -o test_logger test_logger.c % ./test_logger Assertion failed: (procfd > STDERR_FILENO), function service_clean, file /usr/home/jkim/src/head/lib/libcasper/libcasper/service.c, line 394. Broken pipe -- You are receiving this mail because: You are the assignee for the bug.