Add and apply semantic patch to remove expires argument from the isc_timer_reset() calls through the codebase.
7 lines
108 B
Plaintext
7 lines
108 B
Plaintext
@@
|
|
expression E1, E2, E3, E4;
|
|
@@
|
|
|
|
- isc_timer_reset(E1, E2, NULL, E3, E4)
|
|
+ isc_timer_reset(E1, E2, E3, E4)
|