libnm-util:keyfile: typo fixes

This commit is contained in:
Pablo Martí 2009-06-03 09:27:07 -04:00 committed by Dan Williams
parent b9bdc5da4b
commit 6029288ffb
2 changed files with 2 additions and 2 deletions

View file

@ -176,7 +176,7 @@ one_property_cb (gpointer key, gpointer val, gpointer user_data)
param_spec = g_object_class_find_property (info->class, prop_name);
if (!param_spec || !(param_spec->flags & NM_SETTING_PARAM_SERIALIZE)) {
/* Oh, we're so nice and only warn, maybe it should be a fatal error? */
nm_warning ("Ignorning invalid property '%s'", prop_name);
nm_warning ("Ignoring invalid property '%s'", prop_name);
return;
}

View file

@ -643,7 +643,7 @@ connection_from_file (const char *filename)
bad_permissions = statbuf.st_mode & 0077;
if (bad_owner || bad_permissions) {
g_warning ("Ignorning insecure configuration file '%s'", filename);
g_warning ("Ignoring insecure configuration file '%s'", filename);
return NULL;
}