From 42dc57535e99a28e3a6451e7f13027cb55a3608b Mon Sep 17 00:00:00 2001 From: tb Date: Tue, 3 Sep 2024 08:49:16 +0000 Subject: [PATCH] check_sym: adjust logic not to exit 1 in the default dynamic mode ok guenther --- lib/check_sym | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/check_sym b/lib/check_sym index 8333b96422c..68e268a01f7 100755 --- a/lib/check_sym +++ b/lib/check_sym @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: check_sym,v 1.12 2024/08/15 01:25:13 guenther Exp $ +# $OpenBSD: check_sym,v 1.13 2024/09/03 08:49:16 tb Exp $ # # Copyright (c) 2016,2019,2022 Philip Guenther # @@ -425,7 +425,7 @@ done { echo "$old --> $new" - $dynamic && dynamic_output - $static && static_output + ! $dynamic || dynamic_output + ! $static || static_output } -- 2.20.1