74 |
|
"RESV %s %s :%s", |
75 |
|
target_server, resv, reason); |
76 |
|
/* Allow ON to apply local resv as well if it matches */ |
77 |
< |
if (!match(target_server, me.name)) |
77 |
> |
if (match(target_server, me.name)) |
78 |
|
return; |
79 |
|
} |
80 |
|
else |
137 |
|
"RESV %s %s :%s", |
138 |
|
parv[1], parv[2], parv[3]); |
139 |
|
|
140 |
< |
if (!IsClient(source_p) || !match(parv[1], me.name)) |
140 |
> |
if (!IsClient(source_p) || match(parv[1], me.name)) |
141 |
|
return; |
142 |
|
|
143 |
|
if (HasFlag(source_p, FLAGS_SERVICE) || find_matching_name_conf(CONF_ULINE, source_p->servptr->name, |
171 |
|
target_server, resv); |
172 |
|
|
173 |
|
/* Allow ON to apply local unresv as well if it matches */ |
174 |
< |
if (!match(target_server, me.name)) |
174 |
> |
if (match(target_server, me.name)) |
175 |
|
return; |
176 |
|
} |
177 |
|
else |
196 |
|
"UNRESV %s %s", |
197 |
|
parv[1], parv[2]); |
198 |
|
|
199 |
< |
if (!IsClient(source_p) || !match(parv[1], me.name)) |
199 |
> |
if (!IsClient(source_p) || match(parv[1], me.name)) |
200 |
|
return; |
201 |
|
|
202 |
|
if (HasFlag(source_p, FLAGS_SERVICE) || find_matching_name_conf(CONF_ULINE, source_p->servptr->name, |