Changeset 135 for branches/samba-3.0/source/utils
- Timestamp:
- May 29, 2008, 11:30:31 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/utils/smbfilter.c
r1 r135 141 141 142 142 if (c != -1 && FD_ISSET(c, &fds)) { 143 if (!receive_smb(c, packet, 0)) {143 if (!receive_smb(c, packet, BUFFER_SIZE, 0)) { 144 144 d_printf("client closed connection\n"); 145 145 exit(0); … … 152 152 } 153 153 if (s != -1 && FD_ISSET(s, &fds)) { 154 if (!receive_smb(s, packet, 0)) {154 if (!receive_smb(s, packet, BUFFER_SIZE, 0)) { 155 155 d_printf("server closed connection\n"); 156 156 exit(0);
Note:
See TracChangeset
for help on using the changeset viewer.