diff options
author | Thomas Haller <thaller@redhat.com> | 2019-01-31 17:08:03 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2019-02-12 08:50:28 +0100 |
commit | a4fb6ddfca60c50cdf140d3f388209ace06e24ff (patch) | |
tree | 8df5cea166a835f58b4d51cbb12755b87cb29322 /src/main.c | |
parent | 737ab51472a95df32d5f47633c0f01e22ff43950 (diff) | |
download | NetworkManager-a4fb6ddfca60c50cdf140d3f388209ace06e24ff.tar.gz |
all: replace g_strerror() calls with nm_strerror_native()
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index b9cbdc44ab..9f979cf4dc 100644 --- a/src/main.c +++ b/src/main.c @@ -334,7 +334,7 @@ main (int argc, char *argv[]) if (daemon (0, 0) < 0) { errsv = errno; fprintf (stderr, _("Could not daemonize: %s [error %u]\n"), - g_strerror (errsv), + nm_strerror_native (errsv), errsv); exit (1); } |