From: Chris Hofstaedtler Date: Sat, 4 Jan 2025 13:48:48 +0000 (+0100) Subject: analyze: fix URLs to DeviceAllow=, IPAddressDeny= X-Git-Tag: v258-rc1~1709 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=18f3c91a04692a3c10a3d732a53488e13815b9b2;p=thirdparty%2Fsystemd.git analyze: fix URLs to DeviceAllow=, IPAddressDeny= Signed-off-by: Chris Hofstaedtler --- diff --git a/src/analyze/analyze-security.c b/src/analyze/analyze-security.c index adbc72308ff..b6e486ffb1f 100644 --- a/src/analyze/analyze-security.c +++ b/src/analyze/analyze-security.c @@ -1591,7 +1591,7 @@ static const struct security_assessor security_assessor_table[] = { { .id = "IPAddressDeny=", .json_field = "IPAddressDeny", - .url = "https://www.freedesktop.org/software/systemd/man/systemd.exec.html#IPAddressDeny=", + .url = "https://www.freedesktop.org/software/systemd/man/systemd.resource-control.html#IPAddressAllow=ADDRESS%5B/PREFIXLENGTH%5D…", .weight = 1000, .range = 10, .assess = assess_ip_address_allow, @@ -1599,7 +1599,7 @@ static const struct security_assessor security_assessor_table[] = { { .id = "DeviceAllow=", .json_field = "DeviceAllow", - .url = "https://www.freedesktop.org/software/systemd/man/systemd.exec.html#DeviceAllow=", + .url = "https://www.freedesktop.org/software/systemd/man/systemd.resource-control.html#DeviceAllow=", .weight = 1000, .range = 10, .assess = assess_device_allow,