From 884297fc439a4c3eba2365cdb810214dfc4f5799 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Sun, 17 Jan 2016 12:39:57 -0800 Subject: Update Perl version declaration and warnings for server scripts Add use 5.008 and use warnings uniformly to all of the server backend scripts. --- server/wallet-report | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'server/wallet-report') diff --git a/server/wallet-report b/server/wallet-report index 22637ca..6508227 100755 --- a/server/wallet-report +++ b/server/wallet-report @@ -1,12 +1,11 @@ -#!/usr/bin/perl -w +#!/usr/bin/perl # # Wallet server reporting interface. -############################################################################## -# Declarations and globals -############################################################################## - +use 5.008; use strict; +use warnings; + use Wallet::Report; # The help output, sent in reply to the help command. Lists each supported -- cgit v1.2.3