CVSROOT: /cvs Module name: src Changes by: [email protected] 2019/03/11 10:31:24
Modified files:
usr.sbin/pkg_add/OpenBSD: State.pm
Log message:
perl has a warning for statements following exec. It doesn't trigger for
die or exit, but *only* if those are the CORE operations.
make State silent in a context that overrides exit (say, DBI) by using
exec ... or exit instead
(using CORE::exit would be worse, since we want to keep the override)
