From 5a3301b3c715709b7b19f3033a4a08a89311703e Mon Sep 17 00:00:00 2001 From: "Theodor S. Midtlien" Date: Tue, 19 May 2026 21:53:26 +0200 Subject: [PATCH] Fix comment --- util/logrotate_nonlinux.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/util/logrotate_nonlinux.go b/util/logrotate_nonlinux.go index 965609b08..0a188b864 100644 --- a/util/logrotate_nonlinux.go +++ b/util/logrotate_nonlinux.go @@ -2,10 +2,9 @@ package util -// FindLogrotateConflicts scans the standard logrotate locations and returns -// true and the first config file that contains a non-comment line indicating -// it's configured for netbird. -// Will always return false for non-linux device. +// FindLogrotateConflicts scans the standard logrotate locations for +// indications of conflict with netbird. It will always return false for +// non-linux devices. func FindFirstLogrotateConflict() (bool, string) { return false, "" }