diff options
| author | Alexander Barton <alex@barton.de> | 2014-12-27 01:39:07 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2014-12-27 01:50:27 +0100 |
| commit | bd8d4e710c0cb597ef10f23691602256d44895ea (patch) | |
| tree | 84acdb5350216ca9c4f4f8bd44ec742bd8048e50 | |
| parent | 9a931a549b7e1b0979ce5f6088edf5136546f3ed (diff) | |
| download | ngircd-bd8d4e710c0cb597ef10f23691602256d44895ea.tar.gz ngircd-bd8d4e710c0cb597ef10f23691602256d44895ea.zip | |
Fix syntax of ERR_LISTFULL_MSG(478) numeric
Pointed out by "wowaname" in #ngircd, thanks!
| -rw-r--r-- | src/ngircd/messages.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/messages.h b/src/ngircd/messages.h index a56bf866..0115a064 100644 --- a/src/ngircd/messages.h +++ b/src/ngircd/messages.h @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2013 Alexander Barton (alex@barton.de) and Contributors. + * Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -141,7 +141,7 @@ #define ERR_BADCHANNELKEY_MSG "475 %s %s :Cannot join channel (+k) -- Wrong channel key" #define ERR_NOCHANMODES_MSG "477 %s %s :Channel doesn't support modes" #define ERR_NEEDREGGEDNICK_MSG "477 %s %s :Cannot send to channel (+M) -- You need to be identified to a registered account to message this channel" -#define ERR_LISTFULL_MSG "478 %s %s %s: Channel list is full (%d)" +#define ERR_LISTFULL_MSG "478 %s %s %s :Channel list is full (%d)" #define ERR_NOPRIVILEGES_MSG "481 %s :Permission denied" #define ERR_CHANOPRIVSNEEDED_MSG "482 %s %s :You are not channel operator" #define ERR_CHANOPPRIVTOOLOW_MSG "482 %s %s :Your privileges are too low" |