Rename protected_dir() to marked_stow_dir().

This commit is contained in:
Adam Spiers 2011-11-22 15:50:12 +00:00
parent d8a4cda11b
commit b20228721e

View file

@ -473,7 +473,7 @@ sub should_skip_target_which_is_stow_dir {
return 1; return 1;
} }
if ($self->protected_dir($target)) { if ($self->marked_stow_dir($target)) {
debug(2, "Skipping protected directory $target"); debug(2, "Skipping protected directory $target");
return 1; return 1;
} }
@ -482,7 +482,7 @@ sub should_skip_target_which_is_stow_dir {
return 0; return 0;
} }
sub protected_dir { sub marked_stow_dir {
my $self = shift; my $self = shift;
my ($target) = @_; my ($target) = @_;
for my $f (".stow", ".nonstow") { for my $f (".stow", ".nonstow") {
@ -775,7 +775,7 @@ sub find_stowed_path {
my $dir = ''; my $dir = '';
for my $part (split m{/+}, $path) { for my $part (split m{/+}, $path) {
$dir = join_paths($dir, $part); $dir = join_paths($dir, $part);
return $path if $self->protected_dir($dir); return $path if $self->marked_stow_dir($dir);
} }
# Compare with $self->{stow_path} # Compare with $self->{stow_path}