From 3936f37ab9174ae364f9f4fb26d2f95571e23516 Mon Sep 17 00:00:00 2001 From: Flavio Poletti Date: Thu, 16 Oct 2008 10:26:12 +0200 Subject: [PATCH] There's a goto to a sub instead of a label... bug fixed. --- s3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3 b/s3 index d25c449..365d203 100755 --- a/s3 +++ b/s3 @@ -282,7 +282,7 @@ sub pod2doc { } ## end sub pod2doc sub MYLOGDIE { - goto LOGDIE unless $config{interactive}; + goto \&LOGDIE unless $config{interactive}; ERROR @_; die ''; # throw exception } -- 2.11.4.GIT