Skip to content
Snippets Groups Projects
Commit 745d8a83 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

read_ar is no longer a ptr, it's an array

CID 319112
parent f88d3f3e
No related branches found
No related tags found
No related merge requests found
...@@ -60,8 +60,7 @@ void sbbs_t::userlist(long mode) ...@@ -60,8 +60,7 @@ void sbbs_t::userlist(long mode)
if(!chk_ar(cfg.grp[usrgrp[curgrp]]->ar,&user,/* client: */NULL)) if(!chk_ar(cfg.grp[usrgrp[curgrp]]->ar,&user,/* client: */NULL))
continue; continue;
if(!chk_ar(cfg.sub[usrsub[curgrp][cursub[curgrp]]]->ar,&user,/* client: */NULL) if(!chk_ar(cfg.sub[usrsub[curgrp][cursub[curgrp]]]->ar,&user,/* client: */NULL)
|| (cfg.sub[usrsub[curgrp][cursub[curgrp]]]->read_ar!=NULL || (cfg.sub[usrsub[curgrp][cursub[curgrp]]]->read_ar[0]
&& cfg.sub[usrsub[curgrp][cursub[curgrp]]]->read_ar[0]
&& !chk_ar(cfg.sub[usrsub[curgrp][cursub[curgrp]]]->read_ar,&user,/* client: */NULL))) && !chk_ar(cfg.sub[usrsub[curgrp][cursub[curgrp]]]->read_ar,&user,/* client: */NULL)))
continue; continue;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment