diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-12-23 23:42:57 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-12-23 23:42:57 (GMT) |
commit | 9d241be57f05f133edf360a87a83405edd160545 (patch) | |
tree | eca396cfec887829db85da4c4c6f31fcfcea8984 /bin/timekeeper | |
parent | f381ef7b599b1950b63da3ed815095066e6f4454 (diff) | |
download | hdf5-9d241be57f05f133edf360a87a83405edd160545.zip hdf5-9d241be57f05f133edf360a87a83405edd160545.tar.gz hdf5-9d241be57f05f133edf360a87a83405edd160545.tar.bz2 |
[svn-r9714] Purpose:
bug fix
Description:
Setup the time limit with the wrong unit concept. 300 is only
300 seconds, not 300 minutes. Set them to the correct values.
Diffstat (limited to 'bin/timekeeper')
-rwxr-xr-x | bin/timekeeper | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/timekeeper b/bin/timekeeper index f94f746..34d1a49 100755 --- a/bin/timekeeper +++ b/bin/timekeeper @@ -20,7 +20,7 @@ # Created Date: 2004/12/23 # variable initialization -waitperiod=300 # default to 5 hours +waitperiod=`expr 3600 \* 5` # default to 5 hours debugtimelimit= debugflag= # no debug |