mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-09 01:30:39 -04: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();
|