X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=perl%2FAmanda%2FChanger%2Fdisk.pm;h=8c18e65ce91d6a32e78c8153d274390c9c4c4397;hb=949b8910a5e23c4285d0b1aedacfc82a14dc97a5;hp=8172791db08fbe14824dd13cd39c613c01151f36;hpb=c6f0a88c567f8536c498f554285aed1f8150da18;p=debian%2Famanda diff --git a/perl/Amanda/Changer/disk.pm b/perl/Amanda/Changer/disk.pm index 8172791..8c18e65 100644 --- a/perl/Amanda/Changer/disk.pm +++ b/perl/Amanda/Changer/disk.pm @@ -1,4 +1,4 @@ -# Copyright (c) 2008,2009,2010 Zmanda, Inc. All Rights Reserved. +# Copyright (c) 2008-2012 Zmanda, Inc. All Rights Reserved. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2 as published @@ -20,6 +20,7 @@ package Amanda::Changer::disk; use strict; use warnings; +use Carp; use vars qw( @ISA ); @ISA = qw( Amanda::Changer ); @@ -497,7 +498,7 @@ sub _get_slot_label { sub _load_drive { my ($self, $drive, $slot) = @_; - die "'$drive' does not exist" unless (-d $drive); + confess "'$drive' does not exist" unless (-d $drive); if (-e "$drive/data") { unlink("$drive/data"); }