diff options
| author | Michael Biebl <biebl@debian.org> | 2019-03-26 23:25:23 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2019-03-26 23:25:23 +0100 |
| commit | 9a6dcbf895f9da01768e64b73cec88c16157d91e (patch) | |
| tree | a359958930d731e9f1b59344642e10754419fe84 /src/nm-dispatcher.c | |
| parent | 964ae8cc391520440cf5aa13e2b9cc34850ea6c2 (diff) | |
New upstream version 1.16.0 upstream/1.16.0
Diffstat (limited to 'src/nm-dispatcher.c')
| -rw-r--r-- | src/nm-dispatcher.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/nm-dispatcher.c b/src/nm-dispatcher.c index 368b781a..c0ef1bb6 100644 --- a/src/nm-dispatcher.c +++ b/src/nm-dispatcher.c @@ -23,9 +23,6 @@ #include "nm-dispatcher.h" -#include <string.h> -#include <errno.h> - #include "nm-dispatcher-api.h" #include "NetworkManagerUtils.h" #include "nm-utils.h" @@ -965,7 +962,7 @@ dispatcher_dir_changed (GFileMonitor *monitor, else if (errsv == 0) _LOGD ("%s script directory '%s' has no scripts", item->description, item->dir); else { - _LOGD ("%s script directory '%s' error reading (%s)", item->description, item->dir, strerror (errsv)); + _LOGD ("%s script directory '%s' error reading (%s)", item->description, item->dir, nm_strerror_native (errsv)); item->has_scripts = TRUE; } } else { |