| 72 int i = 0; |
72 int i = 0; |
| 73 |
73 |
| 74 if(!purple_http_response_is_successfull(response)) |
74 if(!purple_http_response_is_successfull(response)) |
| 75 return; |
75 return; |
| 76 |
76 |
| 77 changelog = purple_http_response_get_data(response); |
77 changelog = purple_http_response_get_data(response, NULL); |
| 78 |
78 |
| 79 while(changelog[i] && changelog[i] != '\n') i++; |
79 while(changelog[i] && changelog[i] != '\n') i++; |
| 80 |
80 |
| 81 /* this basically means the version thing wasn't in the format we were |
81 /* this basically means the version thing wasn't in the format we were |
| 82 * looking for so sourceforge is probably having web server issues, and |
82 * looking for so sourceforge is probably having web server issues, and |