mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-22 01:59:26 +00:00
Add a simple semantic patch to rewrite all uses of isc_stdtime_get(&t) to simpler t = isc_stdtime_now().
7 lines
69 B
Plaintext
7 lines
69 B
Plaintext
@@
|
|
expression t;
|
|
@@
|
|
|
|
- isc_stdtime_get(&t);
|
|
+ t = isc_stdtime_now();
|