Moved the /proc/mounts literal string nearer to the top.
authorWayne Davison <wayned@samba.org>
Sat, 22 Jan 2005 08:11:43 +0000 (08:11 +0000)
committerWayne Davison <wayned@samba.org>
Sat, 22 Jan 2005 08:11:43 +0000 (08:11 +0000)
support/mnt-excl

index 993180e..63d0ad9 100755 (executable)
@@ -20,6 +20,7 @@
 use strict;
 use Cwd 'abs_path';
 
+my $file = '/proc/mounts';
 my $dir = shift || '/';
 $dir = abs_path($dir);
 $dir =~ s#([^/]*)$##;
@@ -27,7 +28,7 @@ my $trailing = $1;
 $trailing = '' if $trailing eq '.' || !-d "$dir$trailing";
 $trailing .= '/' if $trailing ne '';
 
-open(IN, '/proc/mounts') or die $!;
+open(IN, $file) or die "Unable to open $file: $!\n";
 while (<IN>) {
     $_ = (split)[1];
     next unless s#^\Q$dir$trailing\E##o && $_ ne '';