mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-26 11:32:01 -05:00
Add a simple semantic patch to rewrite all uses of isc_stdtime_get(&t) to simpler t = isc_stdtime_now().
6 lines
69 B
Text
6 lines
69 B
Text
@@
|
|
expression t;
|
|
@@
|
|
|
|
- isc_stdtime_get(&t);
|
|
+ t = isc_stdtime_now();
|