diff options
author | Russ Allbery <eagle@eyrie.org> | 2018-05-27 17:08:36 -0700 |
---|---|---|
committer | Russ Allbery <eagle@eyrie.org> | 2018-05-27 17:58:38 -0700 |
commit | f36c9896f242ae0ec894daa2092600ab81197999 (patch) | |
tree | edb6e3341d60cc8ae7a8e54edc52582c2dc67627 | |
parent | aa542372026db035f64679993b32617adc355c30 (diff) |
Enable warnings for contrib/ad-keytab
Fix one duplicate code line that produced a warning.
-rwxr-xr-x | contrib/ad-keytab | 6 |
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; |