Sujet : Re: Xephyr (on Linux host) and VMS keyboard
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.os.vmsDate : 14. Jun 2025, 03:49:44
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <102io07$3uf5c$1@dont-email.me>
References : 1 2 3 4 5 6 7
User-Agent : Pan/0.162 (Pokrosvk)
On Fri, 13 Jun 2025 22:31:37 -0400, Arne Vajhøj wrote:
if(acctrec.type.type == AcctRecType.ACR$K_IMGDEL) {
tim = acctrec.systime
for(pack in acctrec.packs) {
if(pack.type.type == AcctPackType.ACR$K_RESOURCE) {
stat = pack.status
}
if(pack.type.type == AcctPackType.ACR$K_IMAGENAME) {
img = pack.imagename
}
}
println("$tim : $img status=$stat")
Shouldn’t “stat” and “img” be initialized to something like “null” or
“undef” (or whatever the Groovy equivalent is)? Unless you’re assuming
they’ll always be defined for that record type.