X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=perl%2FAmanda%2FChanger%2Fdisk.pm;fp=perl%2FAmanda%2FChanger%2Fdisk.pm;h=8c18e65ce91d6a32e78c8153d274390c9c4c4397;hb=109540caa4e37a3663b3dcfb9a205b9609e3f561;hp=8172791db08fbe14824dd13cd39c613c01151f36;hpb=4c9eba1feb11adf189bceb4001c425e641f0b56a;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"); }