Changeset 27179
- Timestamp:
- Mar 3, 2010, 5:21:24 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/PS-IPP-Config/lib/PS/IPP/Config.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/PS-IPP-Config/lib/PS/IPP/Config.pm
r27092 r27179 590 590 my $scheme = file_scheme($name); # The scheme, e.g., file://, path:// 591 591 if (defined $scheme and lc($scheme) eq 'neb') { 592 my $found = eval { $self->nebulous->find_instances( $name ); }; 593 ( carp "Unable to find instances of Nebulous handle $name" and return undef ) if $@; 594 return (defined $found ? 1 : 0); 592 my $found = eval { $self->nebulous->find( $name ); }; 593 ( carp "Unable to find instance of Nebulous handle $name" and return undef ) if $@; 594 return 0 unless defined $found; 595 return (-f $found); 595 596 } 596 597
Note:
See TracChangeset
for help on using the changeset viewer.
