- Timestamp:
- 2009-12-12T01:08:22Z (15 years ago)
- Branches:
- master
- Children:
- 4f8396f
- Parents:
- 1f4fc80
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
skype/skype.c
r1f4fc80 r7c300bb 138 138 */ 139 139 140 int skype_write(struct im_connection *ic, char *buf )140 int skype_write(struct im_connection *ic, char *buf, int len) 141 141 { 142 142 struct skype_data *sd = ic->proto_data; 143 143 struct pollfd pfd[1]; 144 int len = strlen(buf);145 144 146 145 pfd[0].fd = sd->fd; … … 168 167 va_end(args); 169 168 170 return skype_write(ic, str );169 return skype_write(ic, str, strlen(str)); 171 170 } 172 171
Note: See TracChangeset
for help on using the changeset viewer.