44 |
|
|
45 |
|
if (parc < 2 || EmptyString(parv[1])) |
46 |
|
{ |
47 |
< |
sendto_one(source_p, ERR_NOORIGIN, |
47 |
> |
sendto_one(source_p, form_str(ERR_NOORIGIN), |
48 |
|
me.name, source_p->name); |
49 |
|
return; |
50 |
|
} |
67 |
|
source_p->name, origin, destination); |
68 |
|
else |
69 |
|
{ |
70 |
< |
sendto_one(source_p, ERR_NOSUCHSERVER, |
70 |
> |
sendto_one(source_p, form_str(ERR_NOSUCHSERVER), |
71 |
|
me.name, source_p->name, destination); |
72 |
|
return; |
73 |
|
} |
95 |
|
} |
96 |
|
else |
97 |
|
{ |
98 |
< |
sendto_one(source_p, ERR_WRONGPONG, me.name, |
98 |
> |
sendto_one(source_p, form_str(ERR_WRONGPONG), me.name, |
99 |
|
source_p->name, source_p->localClient->random_ping); |
100 |
|
return; |
101 |
|
} |
103 |
|
} |
104 |
|
} |
105 |
|
else |
106 |
< |
sendto_one(source_p, ERR_NOORIGIN, |
106 |
> |
sendto_one(source_p, form_str(ERR_NOORIGIN), |
107 |
|
me.name, source_p->name); |
108 |
|
} |
109 |
|
|