1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-21 23:18:00 -08:00

check_sym: adjust logic not to exit 1 in the default dynamic mode

ok guenther
This commit is contained in:
tb 2024-09-03 08:49:16 +00:00
parent 26432afd8a
commit 42dc57535e

View File

@ -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 <guenther@openbsd.org>
#
@ -425,7 +425,7 @@ done
{
echo "$old --> $new"
$dynamic && dynamic_output
$static && static_output
! $dynamic || dynamic_output
! $static || static_output
}