From 7050f7419b6bc829706ba858e8eea1b10334dba8 Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Tue, 21 Nov 2023 21:21:14 +0800 Subject: [PATCH] networkctl: drop one assertion If there're no existing drop-ins, the assertions are unnecessarily triggered. --- src/network/networkctl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/network/networkctl.c b/src/network/networkctl.c index d69d37fcd16..123ae62514d 100644 --- a/src/network/networkctl.c +++ b/src/network/networkctl.c @@ -2909,7 +2909,6 @@ static int get_dropin_by_name( char **ret) { assert(name); - assert(dropins); assert(ret); STRV_FOREACH(i, dropins) @@ -3076,7 +3075,6 @@ static int add_config_to_edit( assert(context); assert(path); - assert(!arg_drop_in || dropins); if (path_startswith(path, "/usr")) { _cleanup_free_ char *name = NULL; -- 2.47.3