From f36c9896f242ae0ec894daa2092600ab81197999 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Sun, 27 May 2018 17:08:36 -0700 Subject: Enable warnings for contrib/ad-keytab Fix one duplicate code line that produced a warning. --- contrib/ad-keytab | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/contrib/ad-keytab b/contrib/ad-keytab index 2703ce5..836cda5 100755 --- a/contrib/ad-keytab +++ b/contrib/ad-keytab @@ -11,13 +11,17 @@ # Declarations ############################################################################## +require 5.005; + +use strict; +use warnings; + use Authen::SASL; use Carp; use Getopt::Long; use IPC::Run qw( run timeout ); use Net::LDAP; use Pod::Usage; -use strict; my $opt_ad_server; my $opt_base_dn; -- cgit v1.2.3