aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorRuss Allbery <eagle@eyrie.org>2018-05-27 17:08:36 -0700
committerRuss Allbery <eagle@eyrie.org>2018-05-27 17:58:38 -0700
commitf36c9896f242ae0ec894daa2092600ab81197999 (patch)
treeedb6e3341d60cc8ae7a8e54edc52582c2dc67627 /contrib
parentaa542372026db035f64679993b32617adc355c30 (diff)
Enable warnings for contrib/ad-keytab
Fix one duplicate code line that produced a warning.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/ad-keytab6
1 files changed, 5 insertions, 1 deletions
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;