diff options
author | Russ Allbery <rra@stanford.edu> | 2010-08-16 21:01:03 -0700 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2010-08-16 21:01:03 -0700 |
commit | 5623ed1520cc916df9c62e137656670c160c7fbb (patch) | |
tree | 9722fb935cd4b58c049cb513c92631c05185a675 | |
parent | e19f404c76b13507f982cdd0bad7c483d6a7d3cc (diff) |
Fix wallet-summary leading comment and module inclusion
This script now uses Wallet::Report, not Wallet::Admin.
-rwxr-xr-x | contrib/wallet-summary | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/wallet-summary b/contrib/wallet-summary index 7a51f9e..b782a97 100755 --- a/contrib/wallet-summary +++ b/contrib/wallet-summary @@ -1,6 +1,6 @@ #!/usr/bin/perl -w # -# wallet-summarize -- Summarize keytabs in the wallet database. +# wallet-summary -- Summarize keytabs in the wallet database. # # Written by Russ Allbery <rra@stanford.edu> # Copyright 2003, 2008, 2010 Board of Trustees, Leland Stanford Jr. University @@ -45,7 +45,7 @@ use vars qw($ADDRESS $DUMPFILE @PATTERNS $REPORTS); use Getopt::Long qw(GetOptions); use File::Path qw(mkpath); use POSIX qw(strftime); -use Wallet::Admin (); +use Wallet::Report (); ############################################################################## # Database queries |