Files
epics-base/modules
Michael Davidsaver 304d8217d9 dbRecordsOnceOnly allow append only with "*"
with

> record(ai, "myrec") {}

dbRecordsOnceOnly!=0 currently disallows appending fields with either form:

> record("*", "myrec") {} # error
> record(ai, "myrec") {}  # error

Change the meaning such that dbRecordsOnceOnly!=0
allways allows appending when explicitly intended (rtype "*").

> record("*", "myrec") {} # allowed
> record(ai, "myrec") {}  # error

Also clearly label this parse error.
2023-12-01 16:35:18 +01:00
..
2023-07-22 08:35:59 -07:00
2023-02-28 16:08:22 +01:00
2022-12-01 12:43:18 -06:00
2023-12-01 16:33:42 +01:00