only in patch2: unchanged: --- network-manager-0.7.1~rc3.1.git4cf2da146.orig/libnm-util/nm-setting.c +++ network-manager-0.7.1~rc3.1.git4cf2da146/libnm-util/nm-setting.c @@ -176,7 +176,7 @@ 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; } only in patch2: unchanged: --- network-manager-0.7.1~rc3.1.git4cf2da146.orig/system-settings/plugins/keyfile/io/reader.c +++ network-manager-0.7.1~rc3.1.git4cf2da146/system-settings/plugins/keyfile/io/reader.c @@ -640,10 +640,10 @@ return NULL; bad_owner = getuid () != statbuf.st_uid; - bad_permissions = statbuf.st_mode & 0077; + bad_permissions = statbuf.st_mode & 0022; if (bad_owner || bad_permissions) { - g_warning ("Ignorning insecure configuration file '%s'", filename); + g_warning ("Ignoring insecure configuration file '%s'", filename); return NULL; }