From: tb Date: Tue, 3 Sep 2024 08:49:16 +0000 (+0000) Subject: check_sym: adjust logic not to exit 1 in the default dynamic mode X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=42dc57535e99a28e3a6451e7f13027cb55a3608b;p=openbsd check_sym: adjust logic not to exit 1 in the default dynamic mode ok guenther --- 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 }