]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
network: add a missing space
authorFrantisek Sumsal <frantisek@sumsal.cz>
Mon, 11 Dec 2023 13:50:32 +0000 (14:50 +0100)
committerFrantisek Sumsal <frantisek@sumsal.cz>
Mon, 11 Dec 2023 13:50:32 +0000 (14:50 +0100)
src/network/networkd-address.c

index 70711376767b43e7cd4466da5b1b3e973859320d..49b68b2323c6ba3547fa2d76e1fa39978fd08180 100644 (file)
@@ -675,7 +675,7 @@ static void address_modify_nft_set_context(Address *address, bool add, NFTSetCon
 
                 if (r < 0)
                         log_warning_errno(r, "Failed to %s NFT set: family %s, table %s, set %s, IP address %s, ignoring",
-                                          add? "add" : "delete",
+                                          add ? "add" : "delete",
                                           nfproto_to_string(nft_set->nfproto), nft_set->table, nft_set->set,
                                           IN_ADDR_PREFIX_TO_STRING(address->family, &address->in_addr, address->prefixlen));
                 else