Changeset ab09043a in rtems
- Timestamp:
- 08/21/98 12:51:29 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- bbdab89
- Parents:
- fd808ba
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libnetworking/libc/res_send.c
rfd808ba rab09043a 426 426 * RTEMS doesn't have writev (yet) 427 427 */ 428 if ((write (s, len, INT16SZ) != INT16SZ)428 if ((write (s, &len, INT16SZ) != INT16SZ) 429 429 || (write (s, buf, buflen) != buflen)) { 430 430 #endif -
c/src/lib/libnetworking/libc/res_send.c
rfd808ba rab09043a 426 426 * RTEMS doesn't have writev (yet) 427 427 */ 428 if ((write (s, len, INT16SZ) != INT16SZ)428 if ((write (s, &len, INT16SZ) != INT16SZ) 429 429 || (write (s, buf, buflen) != buflen)) { 430 430 #endif -
c/src/libnetworking/libc/res_send.c
rfd808ba rab09043a 426 426 * RTEMS doesn't have writev (yet) 427 427 */ 428 if ((write (s, len, INT16SZ) != INT16SZ)428 if ((write (s, &len, INT16SZ) != INT16SZ) 429 429 || (write (s, buf, buflen) != buflen)) { 430 430 #endif -
cpukit/libnetworking/libc/res_send.c
rfd808ba rab09043a 426 426 * RTEMS doesn't have writev (yet) 427 427 */ 428 if ((write (s, len, INT16SZ) != INT16SZ)428 if ((write (s, &len, INT16SZ) != INT16SZ) 429 429 || (write (s, buf, buflen) != buflen)) { 430 430 #endif
Note: See TracChangeset
for help on using the changeset viewer.