comparison libpurple/network.c @ 29497:60d0242ea902

Woops, a stray ;
author Marcus Lundblad <ml@update.uu.se>
date Thu, 10 Sep 2009 20:51:30 +0000
parents f1aa01ff26dd
children df24cbb0d6e2
comparison
equal deleted inserted replaced
29496:f1aa01ff26dd 29497:60d0242ea902
202 202
203 GList * 203 GList *
204 purple_network_get_all_local_system_ips(void) 204 purple_network_get_all_local_system_ips(void)
205 { 205 {
206 GList *result = NULL; 206 GList *result = NULL;
207 int source = source = socket(PF_INET,SOCK_STREAM, 0);; 207 int source = source = socket(PF_INET,SOCK_STREAM, 0);
208 char buffer[1024]; 208 char buffer[1024];
209 char *tmp; 209 char *tmp;
210 struct ifconf ifc; 210 struct ifconf ifc;
211 struct ifreq *ifr; 211 struct ifreq *ifr;
212 212