| 32 |
|
#include "fdlist.h" |
| 33 |
|
#include "hash.h" |
| 34 |
|
#include "irc_string.h" |
| 35 |
– |
#include "sprintf_irc.h" |
| 35 |
|
#include "s_bsd.h" |
| 36 |
|
#include "ircd.h" |
| 37 |
|
#include "listener.h" |
| 1440 |
|
{ |
| 1441 |
|
struct Isupport *support = ptr->data; |
| 1442 |
|
|
| 1443 |
< |
p += (n = ircsprintf(p, "%s", support->name)); |
| 1443 |
> |
p += (n = sprintf(p, "%s", support->name)); |
| 1444 |
|
len += n; |
| 1445 |
|
|
| 1446 |
|
if (support->options != NULL) |
| 1447 |
|
{ |
| 1448 |
< |
p += (n = ircsprintf(p, "=%s", support->options)); |
| 1448 |
> |
p += (n = sprintf(p, "=%s", support->options)); |
| 1449 |
|
len += n; |
| 1450 |
|
} |
| 1451 |
|
|
| 1452 |
|
if (support->number > 0) |
| 1453 |
|
{ |
| 1454 |
< |
p += (n = ircsprintf(p, "=%d", support->number)); |
| 1454 |
> |
p += (n = sprintf(p, "=%d", support->number)); |
| 1455 |
|
len += n; |
| 1456 |
|
} |
| 1457 |
|
|