aboutsummaryrefslogtreecommitdiffstats
path: root/package/htpdate
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2005-07-01 15:37:45 +0000
committerFelix Fietkau <nbd@openwrt.org>2005-07-01 15:37:45 +0000
commit976744540217ae7aa3ca8d6c5bedc10a7f135615 (patch)
tree11641ff39cee706989f7ac8d6e438ce21d36987c /package/htpdate
parent92868ea8954019b6700e03e2c9168b16c8c3837c (diff)
downloadmaster-187ad058-976744540217ae7aa3ca8d6c5bedc10a7f135615.tar.gz
master-187ad058-976744540217ae7aa3ca8d6c5bedc10a7f135615.tar.bz2
master-187ad058-976744540217ae7aa3ca8d6c5bedc10a7f135615.zip
Fix to use the new option introduced in v0.8.1 to disable sanity time check
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1309 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/htpdate')
-rw-r--r--package/htpdate/files/htpdate.init2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/htpdate/files/htpdate.init b/package/htpdate/files/htpdate.init
index 69d3d35f57..97a413f774 100644
--- a/package/htpdate/files/htpdate.init
+++ b/package/htpdate/files/htpdate.init
@@ -9,7 +9,7 @@ PID_F=$RUN_D/$BIN.pid
case $1 in
start)
mkdir -p $RUN_D
- $BIN -C 0 -l -s $OPTIONS && $BIN -D $OPTIONS
+ $BIN -l -s -t $OPTIONS && $BIN -D $OPTIONS
;;
stop)
[ -f $PID_F ] && kill $(cat $PID_F)