summaryrefslogtreecommitdiff
path: root/src/settings/plugins/ifcfg-rh/shvar.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings/plugins/ifcfg-rh/shvar.c')
-rw-r--r--src/settings/plugins/ifcfg-rh/shvar.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/settings/plugins/ifcfg-rh/shvar.c b/src/settings/plugins/ifcfg-rh/shvar.c
index 6df75acc66..f3d58e26c7 100644
--- a/src/settings/plugins/ifcfg-rh/shvar.c
+++ b/src/settings/plugins/ifcfg-rh/shvar.c
@@ -813,7 +813,7 @@ svOpenFileInternal (const char *name, gboolean create, GError **error)
g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errsv),
"Could not read file '%s': %s",
- name, strerror (errsv));
+ name, nm_strerror_native (errsv));
return NULL;
}
@@ -1324,14 +1324,14 @@ svWriteFile (shvarFile *s, int mode, GError **error)
errsv = errno;
g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errsv),
"Could not open file '%s' for writing: %s",
- s->fileName, strerror (errsv));
+ s->fileName, nm_strerror_native (errsv));
return FALSE;
}
if (ftruncate (s->fd, 0) < 0) {
errsv = errno;
g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errsv),
"Could not overwrite file '%s': %s",
- s->fileName, strerror (errsv));
+ s->fileName, nm_strerror_native (errsv));
return FALSE;
}
@@ -1340,7 +1340,7 @@ svWriteFile (shvarFile *s, int mode, GError **error)
errsv = errno;
g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errsv),
"Internal error writing file '%s': %s",
- s->fileName, strerror (errsv));
+ s->fileName, nm_strerror_native (errsv));
return FALSE;
}
f = fdopen (tmpfd, "w");