nixpkgs/pkgs/development/perl-modules/Paranoid-blessed-path.patch

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
1.0 KiB
Diff
Raw Normal View History

2023-10-20 18:01:21 +03:00
diff '--color=auto' -ur Paranoid-2.10/lib/Paranoid.pm Paranoid-2.10-patched/lib/Paranoid.pm
--- Paranoid-2.10/lib/Paranoid.pm 2022-03-08 10:01:04.000000000 +0100
+++ Paranoid-2.10-patched/lib/Paranoid.pm 2023-10-20 16:57:54.025754755 +0200
@@ -47,7 +47,7 @@
%EXPORT_TAGS = ( all => [@EXPORT_OK], );
2018-05-10 13:47:31 +03:00
2023-10-20 18:01:21 +03:00
use constant PTRUE_ZERO => '0 but true';
-use constant DEFAULT_PATH => '/bin:/sbin:/usr/bin:/usr/sbin';
+use constant DEFAULT_PATH => '__BLESSED_PATH__';
2018-05-10 13:47:31 +03:00
2023-10-20 18:01:21 +03:00
#####################################################################
#
diff '--color=auto' -ur Paranoid-2.10/t/01_init_core.t Paranoid-2.10-patched/t/01_init_core.t
--- Paranoid-2.10/t/01_init_core.t 2022-01-24 10:30:20.000000000 +0100
+++ Paranoid-2.10-patched/t/01_init_core.t 2023-10-20 16:58:16.856288407 +0200
@@ -35,5 +35,4 @@
2018-05-10 13:47:31 +03:00
ok( psecureEnv('/bin:/sbin'), 'psecureEnv 1' );
is( $ENV{PATH}, '/bin:/sbin', 'Validated PATH' );
ok( psecureEnv(), 'psecureEnv 2' );
2023-10-20 18:01:21 +03:00
-is( $ENV{PATH}, '/bin:/sbin:/usr/bin:/usr/sbin', 'Validated PATH' );
-
2018-05-10 13:47:31 +03:00
+is( $ENV{PATH}, '__BLESSED_PATH__', 'Validated PATH' );