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