summaryrefslogtreecommitdiff
path: root/src/udev/net
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2014-04-19 19:05:37 +0200
committerTom Gundersen <teg@jklm.no>2014-04-19 19:05:37 +0200
commit6916ec29afd488d91e7e0fcbcc2e006b4e5f28df (patch)
tree88be41b927d6687ed86b7129d84a97a6a30a6c23 /src/udev/net
parenta21df104887552e8558d6c11388dff466641a031 (diff)
network: implement masking of .link, .network and .netdev files
Diffstat (limited to 'src/udev/net')
-rw-r--r--src/udev/net/link-config.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/udev/net/link-config.c b/src/udev/net/link-config.c
index 8215c40d5d..345a380d85 100644
--- a/src/udev/net/link-config.c
+++ b/src/udev/net/link-config.c
@@ -146,6 +146,11 @@ static int load_link(link_config_ctx *ctx, const char *filename) {
assert(ctx);
assert(filename);
+ if (null_or_empty_path(filename)) {
+ log_debug("skipping empty file: %s", filename);
+ return 0;
+ }
+
file = fopen(filename, "re");
if (!file) {
if (errno == ENOENT)