diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-06-14 13:15:35 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-12-07 13:52:21 +0100 |
commit | 21f4f0f4b0785e30ce2af4741ffa6f2ebdd7d714 (patch) | |
tree | dc21f2583473d4e8fff11f2940c87cc258ec3053 /sysdep/unix/krt.Y | |
parent | d3fa9e84e98d7b8c726f5e35d6a359971eb98f94 (diff) |
Kernel: Update to new timers
Diffstat (limited to 'sysdep/unix/krt.Y')
-rw-r--r-- | sysdep/unix/krt.Y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdep/unix/krt.Y b/sysdep/unix/krt.Y index 3bf7da65..6d90db64 100644 --- a/sysdep/unix/krt.Y +++ b/sysdep/unix/krt.Y @@ -68,7 +68,7 @@ kern_item: | PERSIST bool { THIS_KRT->persist = $2; } | SCAN TIME expr { /* Scan time of 0 means scan on startup only */ - THIS_KRT->scan_time = $3; + THIS_KRT->scan_time = $3 S_; } | LEARN bool { THIS_KRT->learn = $2; @@ -103,7 +103,7 @@ kif_item: | INTERFACE kif_iface | SCAN TIME expr { /* Scan time of 0 means scan on startup only */ - THIS_KIF->scan_time = $3; + THIS_KIF->scan_time = $3 S_; } ; |