ifcfg-rh/trivial: rename nms_ifcfg_rh_utils_parse_unhandled_spec() helper

The name didn't follow the scheme.
This commit is contained in:
Thomas Haller 2019-12-21 12:36:20 +01:00
parent 27d51c3250
commit 89d8b254eb
3 changed files with 9 additions and 9 deletions

View file

@ -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);

View file

@ -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:")) {

View file

@ -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\")"