degesch: fix trivial user command handlers
This commit is contained in:
parent
0875bbfba7
commit
4970929f1d
|
@ -6601,9 +6601,9 @@ CHANMODE_HANDLER (voice, true, 'v') CHANMODE_HANDLER (devoice, false, 'v')
|
||||||
{ \
|
{ \
|
||||||
(void) ctx; \
|
(void) ctx; \
|
||||||
if (*a->arguments) \
|
if (*a->arguments) \
|
||||||
irc_send (a->s, #command " %s", a->arguments); \
|
irc_send (a->s, command " %s", a->arguments); \
|
||||||
else \
|
else \
|
||||||
irc_send (a->s, #command); \
|
irc_send (a->s, command); \
|
||||||
return true; \
|
return true; \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue