From 26eafd3420be7fa189ee0964b120a609e1d0affb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Klime=C5=A1?= Date: Mon, 18 Aug 2014 12:41:43 +0200 Subject: [PATCH] trivial: fix a typo in show_access_point_info() function name --- clients/cli/devices.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clients/cli/devices.c b/clients/cli/devices.c index d2e4c4fa7c..1237125cf5 100644 --- a/clients/cli/devices.c +++ b/clients/cli/devices.c @@ -1670,7 +1670,7 @@ error: } static void -show_acces_point_info (NMDevice *device, NmCli *nmc) +show_access_point_info (NMDevice *device, NmCli *nmc) { NMAccessPoint *active_ap = NULL; const char *active_bssid = NULL; @@ -1831,7 +1831,7 @@ do_device_wifi_list (NmCli *nmc, int argc, char **argv) print_data (nmc); /* Print all data */ g_free (info); } else { - show_acces_point_info (device, nmc); + show_access_point_info (device, nmc); } } else { g_string_printf (nmc->return_text, _("Error: Device '%s' is not a Wi-Fi device."), ifname); @@ -1902,7 +1902,7 @@ do_device_wifi_list (NmCli *nmc, int argc, char **argv) if (NM_IS_DEVICE_WIFI (dev)) { if (empty_line) printf ("\n"); /* Empty line between devices' APs */ - show_acces_point_info (dev, nmc); + show_access_point_info (dev, nmc); empty_line = TRUE; } }