mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-05 03:20:18 +01:00
nmcli/trivial: rename monitor functions in internal header file
Identifiers in our headers should have a "nm" prefix. Rename.
(cherry picked from commit d3e2e9dc20)
This commit is contained in:
parent
1a9892620e
commit
6298b32281
5 changed files with 6 additions and 6 deletions
|
|
@ -10117,7 +10117,7 @@ nmc_command_func_connection(const NMCCommand *cmd, NmCli *nmc, int argc, const c
|
|||
}
|
||||
|
||||
void
|
||||
monitor_connections(NmCli *nmc)
|
||||
nmc_monitor_connections(NmCli *nmc)
|
||||
{
|
||||
do_connection_monitor(NULL, nmc, 0, NULL);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "nmcli.h"
|
||||
|
||||
void monitor_connections(NmCli *nmc);
|
||||
void nmc_monitor_connections(NmCli *nmc);
|
||||
|
||||
const char *nmc_connection_check_deprecated(NMConnection *c);
|
||||
|
||||
|
|
|
|||
|
|
@ -5328,7 +5328,7 @@ nmc_command_func_device(const NMCCommand *cmd, NmCli *nmc, int argc, const char
|
|||
}
|
||||
|
||||
void
|
||||
monitor_devices(NmCli *nmc)
|
||||
nmc_monitor_devices(NmCli *nmc)
|
||||
{
|
||||
do_devices_monitor(NULL, nmc, 0, NULL);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ void nmc_complete_device(NMClient *client, const char *prefix, gboolean wifi_onl
|
|||
|
||||
void nmc_complete_bssid(NMClient *client, const char *ifname, const char *bssid_prefix);
|
||||
|
||||
void monitor_devices(NmCli *nmc);
|
||||
void nmc_monitor_devices(NmCli *nmc);
|
||||
|
||||
NMDevice **nmc_get_devices_sorted(NMClient *client);
|
||||
|
||||
|
|
|
|||
|
|
@ -1632,6 +1632,6 @@ nmc_command_func_monitor(const NMCCommand *cmd, NmCli *nmc, int argc, const char
|
|||
|
||||
nmc->should_wait++;
|
||||
|
||||
monitor_devices(nmc);
|
||||
monitor_connections(nmc);
|
||||
nmc_monitor_devices(nmc);
|
||||
nmc_monitor_connections(nmc);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue