Changeset 578 for branches/samba-3.3.x/source/smbd/process.c
- Timestamp:
- Jun 25, 2011, 7:14:41 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/smbd/process.c
r467 r578 699 699 static int select_on_fd(int fd, int maxfd, fd_set *fds) 700 700 { 701 if (fd != -1 ) {701 if (fd != -1 && fd < FD_SETSIZE) { 702 702 FD_SET(fd, fds); 703 703 maxfd = MAX(maxfd, fd);
Note:
See TracChangeset
for help on using the changeset viewer.