[Rt-commit] [svn] r1193 - rt/trunk/bin

alexmv at pallas.eruditorum.org alexmv at pallas.eruditorum.org
Thu Jul 8 15:40:10 EDT 2004


Author: alexmv
Date: Thu Jul  8 15:40:10 2004
New Revision: 1193

Modified:
   rt/trunk/bin/rt-crontool.in
Log:
 * @ARGV _is_ allowed to be empty; it is $search which must not be.
   Thanks to jdwitt at the domain of software.umn.edu for the catch.


Modified: rt/trunk/bin/rt-crontool.in
==============================================================================
--- rt/trunk/bin/rt-crontool.in	(original)
+++ rt/trunk/bin/rt-crontool.in	Thu Jul  8 15:40:10 2004
@@ -68,7 +68,7 @@
             "help"            => \$help,
             "verbose|v"       => \$verbose );
 
-help() if $help or not @ARGV or not $action;
+help() if $help or not $search or not $action;
 
 # We _must_ have a search object
 load_module($search);


More information about the Rt-commit mailing list