From: Tomasz Bursztyka Date: Sat, 28 Apr 2012 09:00:05 +0000 (+0300) Subject: gsupplicant: Renaming a function for a more relevant name X-Git-Tag: 0.84~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6416077837319e830418ed325533ff554e96b669;p=platform%2Fupstream%2Fconnman.git gsupplicant: Renaming a function for a more relevant name --- diff --git a/gsupplicant/supplicant.c b/gsupplicant/supplicant.c index 25a88af..f7faa8a 100644 --- a/gsupplicant/supplicant.c +++ b/gsupplicant/supplicant.c @@ -1096,7 +1096,7 @@ static char *create_group(struct g_supplicant_bss *bss) return g_string_free(str, FALSE); } -static void add_bss_to_network(struct g_supplicant_bss *bss) +static void add_or_replace_bss_to_network(struct g_supplicant_bss *bss) { GSupplicantInterface *interface = bss->interface; GSupplicantNetwork *network; @@ -1365,7 +1365,7 @@ static void bss_property(const char *key, DBusMessageIter *iter, else bss->security = G_SUPPLICANT_SECURITY_NONE; - add_bss_to_network(bss); + add_or_replace_bss_to_network(bss); return; }