note the changes for 0.0.3 and revert one change to the test

This commit is contained in:
Zane C. B-H 2019-08-09 07:24:46 -05:00
parent 4c573eaa14
commit 4b41137edf
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,10 @@
Revision history for Net-Connection-lsof
0.0.3 2019-08-09/07:30
- Add a work around for on some Linux systems
where lsof will exit 1 upon successful completion,
such as Debian 9.
0.0.2 2019-07-28/21:45
- Properly set uid_resolve.
- Actually remove ) from state now.

View File

@ -16,7 +16,7 @@ if (
( $? eq 0 ) ||
(
( $^O =~ /linux/ ) &&
( $? ne 256 )
( $? eq 256 )
)
){
$extra_tests++;