freebsd-ports/audio/lash/files/patch-lashd_conn__mgr.c
Mathieu Arnold 9fa9eb9ac7 Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them.

With hat:	portmgr
Sponsored by:	Absolight
2016-07-26 16:51:15 +00:00

15 lines
333 B
C

--- lashd/conn_mgr.c.orig 2007-04-08 21:18:23 UTC
+++ lashd/conn_mgr.c
@@ -759,7 +759,11 @@ conn_mgr_recv_run(void *data)
fprintf(stderr, "%s: error calling select(): %s\n", __FUNCTION__,
strerror(errno));
- return NULL;
+
+ if (errno == EBADF)
+ continue;
+ else
+ return NULL;
}
if (conn_mgr->quit)