use extended-join capability

This commit is contained in:
ailin-nemui 2019-08-13 02:16:22 +02:00
commit 25270e0465
8 changed files with 25 additions and 9 deletions

View file

@ -426,6 +426,7 @@ void perl_nick_fill_hash(HV *hv, NICK_REC *nick)
(void) hv_store(hv, "nick", 4, new_pv(nick->nick), 0);
(void) hv_store(hv, "host", 4, new_pv(nick->host), 0);
(void) hv_store(hv, "realname", 8, new_pv(nick->realname), 0);
(void) hv_store(hv, "account", 7, new_pv(nick->account), 0);
(void) hv_store(hv, "hops", 4, newSViv(nick->hops), 0);
(void) hv_store(hv, "gone", 4, newSViv(nick->gone), 0);