From 02747203c6212b0a35e86f4a3b21a0d632b78afc Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Tue, 17 Jun 2014 19:11:56 +0200 Subject: [PATCH] dispatcher: silence warning about sub-directories in dispatcher directory Especially now that we have the 'pre-up.d/' and 'pre-down.d/' directories, silently skip over any sub directories inside the dispatcher directory. Fixes warning: nm-dispatcher: Cannot execute '/etc/NetworkManager/dispatcher.d/pre-up.d': not a regular file. Signed-off-by: Thomas Haller --- callouts/nm-dispatcher.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/callouts/nm-dispatcher.c b/callouts/nm-dispatcher.c index 57e4ac3c1..733af511f 100644 --- a/callouts/nm-dispatcher.c +++ b/callouts/nm-dispatcher.c @@ -454,6 +454,8 @@ find_scripts (const char *str_action) err = stat (path, &st); if (err) g_warning ("Failed to stat '%s': %d", path, err); + else if (S_ISDIR (st.st_mode)) + ; /* silently skip. */ else if (!check_permissions (&st, &err_msg)) g_warning ("Cannot execute '%s': %s", path, err_msg); else {