]> arthur.barton.de Git - ngircd-alex.git/commit
Get rid of unclever assert() in Send_Message_Mask()
authorAlexander Barton <alex@barton.de>
Mon, 4 Jan 2016 19:37:13 +0000 (20:37 +0100)
committerAlexander Barton <alex@barton.de>
Mon, 4 Jan 2016 19:37:13 +0000 (20:37 +0100)
commit4693226d6983b5ed4bd74b32a8daa9a3124ed17c
treea67122dbe55ff5c0899884c82e2bbf3f0e91b55f
parentafb59ab8e5ccf5d48c78dab53e8ec64d21829a8d
Get rid of unclever assert() in Send_Message_Mask()

Either we use assert() to _guarantee_ a certain condition, or we use
if(...) to test for it. But never both.

So get rid of the assert() in Send_Message_Mask() and handle the case
that the target mask doesn't contain a dot (".") as regular error,
don't require the caller to assure that any more.

This polishes commit 5a312824.

Please note:
The test in Send_Message() is still _required_ to detect whether the
target is a channel (no dot) or a "target mask" (at least one dot)!
src/ngircd/irc.c