586 |
struct ClassItem *classitem = NULL; |
struct ClassItem *classitem = NULL; |
587 |
char buf[12]; |
char buf[12]; |
588 |
char *p = NULL; |
char *p = NULL; |
589 |
|
const char *pfx = NULL; |
590 |
|
|
591 |
switch (type) |
switch (type) |
592 |
{ |
{ |
643 |
break; |
break; |
644 |
|
|
645 |
case RKLINE_TYPE: |
case RKLINE_TYPE: |
646 |
p = temp ? "Rk" : "RK"; |
pfx = temp ? "Rk" : "RK"; |
647 |
|
|
648 |
DLINK_FOREACH(ptr, rkconf_items.head) |
DLINK_FOREACH(ptr, rkconf_items.head) |
649 |
{ |
{ |
653 |
continue; |
continue; |
654 |
|
|
655 |
sendto_one(source_p, form_str(RPL_STATSKLINE), me.name, |
sendto_one(source_p, form_str(RPL_STATSKLINE), me.name, |
656 |
source_p->name, p, aconf->host, aconf->user, |
source_p->name, pfx, aconf->host, aconf->user, |
657 |
aconf->reason, aconf->oper_reason ? aconf->oper_reason : ""); |
aconf->reason, aconf->oper_reason ? aconf->oper_reason : ""); |
658 |
} |
} |
659 |
break; |
break; |