mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
+
This commit is contained in:
parent
9e96208836
commit
d6acc233d9
1 changed files with 6 additions and 0 deletions
|
@ -1190,6 +1190,12 @@ static privmsg(args, text, req) {
|
||||||
mixed t;
|
mixed t;
|
||||||
|
|
||||||
unless (stringp(text) && strlen(text)) {
|
unless (stringp(text) && strlen(text)) {
|
||||||
|
// somewhere in the IRC RFC it is permissible to
|
||||||
|
// send messages without a colon if they only
|
||||||
|
// contain one word. fifteen years after this code
|
||||||
|
// was originally written we encounter the first
|
||||||
|
// case of a client that actually makes use of
|
||||||
|
// that. it's called "Circe".
|
||||||
unless (sscanf(args, "%s %s", args, text)) return;
|
unless (sscanf(args, "%s %s", args, text)) return;
|
||||||
}
|
}
|
||||||
#ifdef GAMMA
|
#ifdef GAMMA
|
||||||
|
|
Loading…
Reference in a new issue