2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 01:59:26 +00:00

Add a semantic patch to change isc_stdtime_get() to isc_stdtime_now

Add a simple semantic patch to rewrite all uses of isc_stdtime_get(&t)
to simpler t = isc_stdtime_now().
This commit is contained in:
Ondřej Surý 2023-03-30 21:09:24 +02:00
parent c11af0448a
commit 0ec8d7b6f3
No known key found for this signature in database
GPG Key ID: 2820F37E873DEA41

View File

@ -0,0 +1,6 @@
@@
expression t;
@@
- isc_stdtime_get(&t);
+ t = isc_stdtime_now();