- Timestamp:
- May 17, 2008, 12:01:18 AM (13 years ago)
- Location:
- zzuf/trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/src/debug.c
r2271 r2326 140 140 if(i == 0) 141 141 write(_zz_debugfd, ".", 1); 142 write(_zz_debugfd, hex2char + (int)g, 1); 142 write(_zz_debugfd, hex2char + (int)g, 1); 143 143 } 144 144 } -
zzuf/trunk/src/fd.c
r1859 r2326 101 101 102 102 void _zz_ports(char const *portlist) 103 { 103 { 104 104 ports = _zz_allocrange(portlist, static_ports); 105 105 } 106 106 107 107 void _zz_list(char const *fdlist) 108 { 108 { 109 109 list = _zz_allocrange(fdlist, static_list); 110 110 } … … 261 261 maxfd *= 2; 262 262 } 263 263 264 264 /* Find an empty slot */ 265 265 for(i = 0; i < nfiles; i++) -
zzuf/trunk/src/lib-fd.c
r2320 r2326 326 326 return ret; 327 327 328 if(ret > 0) 328 if(ret > 0) 329 329 { 330 330 char *b = buf; … … 350 350 #if defined HAVE_RECVFROM 351 351 RECV_T NEW(recvfrom)(int s, void *buf, size_t len, int flags, 352 struct sockaddr *from, SOCKLEN_T *fromlen) 352 struct sockaddr *from, SOCKLEN_T *fromlen) 353 353 { 354 354 int ret; … … 359 359 return ret; 360 360 361 if(ret > 0) 361 if(ret > 0) 362 362 { 363 363 char *b = buf; -
zzuf/trunk/src/zzuf.c
r2319 r2326 453 453 _zz_opts_fini(opts); 454 454 455 return opts->crashes ? EXIT_FAILURE : EXIT_SUCCESS; 455 return opts->crashes ? EXIT_FAILURE : EXIT_SUCCESS; 456 456 } 457 457 … … 1011 1011 if(!epaddr) 1012 1012 return -1; 1013 1013 1014 1014 memset(&sinfo, 0, sizeof(sinfo)); 1015 1015 sinfo.cb = sizeof(sinfo);
Note: See TracChangeset
for help on using the changeset viewer.