mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 06:00:08 +01:00
ifcfg-rh/trivial: rename nms_ifcfg_rh_utils_parse_unhandled_spec() helper
The name didn't follow the scheme.
This commit is contained in:
parent
27d51c3250
commit
89d8b254eb
3 changed files with 9 additions and 9 deletions
|
|
@ -206,9 +206,9 @@ _load_file (NMSIfcfgRHPlugin *self,
|
|||
const char *unmanaged_spec;
|
||||
const char *unrecognized_spec;
|
||||
|
||||
if (!nms_ifcfg_rh_util_parse_unhandled_spec (unhandled_spec,
|
||||
&unmanaged_spec,
|
||||
&unrecognized_spec)) {
|
||||
if (!nms_ifcfg_rh_utils_parse_unhandled_spec (unhandled_spec,
|
||||
&unmanaged_spec,
|
||||
&unrecognized_spec)) {
|
||||
nm_utils_error_set (error, NM_UTILS_ERROR_UNKNOWN,
|
||||
"invalid unhandled spec \"%s\"",
|
||||
unhandled_spec);
|
||||
|
|
|
|||
|
|
@ -17,9 +17,9 @@
|
|||
/*****************************************************************************/
|
||||
|
||||
gboolean
|
||||
nms_ifcfg_rh_util_parse_unhandled_spec (const char *unhandled_spec,
|
||||
const char **out_unmanaged_spec,
|
||||
const char **out_unrecognized_spec)
|
||||
nms_ifcfg_rh_utils_parse_unhandled_spec (const char *unhandled_spec,
|
||||
const char **out_unmanaged_spec,
|
||||
const char **out_unrecognized_spec)
|
||||
{
|
||||
if (unhandled_spec) {
|
||||
if (NM_STR_HAS_PREFIX (unhandled_spec, "unmanaged:")) {
|
||||
|
|
|
|||
|
|
@ -11,9 +11,9 @@
|
|||
|
||||
#include "shvar.h"
|
||||
|
||||
gboolean nms_ifcfg_rh_util_parse_unhandled_spec (const char *unhandled_spec,
|
||||
const char **out_unmanaged_spec,
|
||||
const char **out_unrecognized_spec);
|
||||
gboolean nms_ifcfg_rh_utils_parse_unhandled_spec (const char *unhandled_spec,
|
||||
const char **out_unmanaged_spec,
|
||||
const char **out_unrecognized_spec);
|
||||
|
||||
#define NM_IFCFG_CONNECTION_LOG_PATH(path) ((path) ?: "in-memory")
|
||||
#define NM_IFCFG_CONNECTION_LOG_FMT "%s (%s,\"%s\")"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue