- Timestamp:
- 2010-08-04T19:30:46Z (14 years ago)
- Branches:
- master
- Children:
- 65016a6
- Parents:
- 3063f81
- Location:
- protocols/yahoo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/yahoo/Makefile
r3063f81 rbce2014 15 15 objects = yahoo.o crypt.o libyahoo2.o yahoo_fn.o yahoo_httplib.o yahoo_util.o 16 16 17 CFLAGS += -Wall -DSTDC_HEADERS -DHAVE_STRING_H -DHAVE_STRCHR -DHAVE_MEMCPY -DHAVE_GLIB -Wno-pointer-to-int-cast17 CFLAGS += -Wall -DSTDC_HEADERS -DHAVE_STRING_H -DHAVE_STRCHR -DHAVE_MEMCPY -DHAVE_GLIB 18 18 LFLAGS += -r 19 19 -
protocols/yahoo/yahoo.c
r3063f81 rbce2014 708 708 { 709 709 struct byahoo_input_data *inp = g_new0( struct byahoo_input_data, 1 ); 710 int fd = ( int) fd_;710 int fd = (long) fd_; 711 711 712 712 if( cond == YAHOO_INPUT_READ ) … … 790 790 int ext_yahoo_write( void *fd, char *buf, int len ) 791 791 { 792 return write( ( int) fd, buf, len );792 return write( (long) fd, buf, len ); 793 793 } 794 794 795 795 int ext_yahoo_read( void *fd, char *buf, int len ) 796 796 { 797 return read( ( int) fd, buf, len );797 return read( (long) fd, buf, len ); 798 798 } 799 799 800 800 void ext_yahoo_close( void *fd ) 801 801 { 802 close( ( int) fd );802 close( (long) fd ); 803 803 } 804 804
Note: See TracChangeset
for help on using the changeset viewer.