diff options
| author | Alexander Barton <alex@barton.de> | 2002-02-11 23:33:12 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-02-11 23:33:12 +0000 |
| commit | 207937da2ab6c999b68378c9fff8474f57f0efdb (patch) | |
| tree | 31bd61ce45addc004988fefcb5dd822275c345a6 /src | |
| parent | 84a2f8ab268412ecacca20aacc8b1727c81a6d07 (diff) | |
| download | ngircd-207937da2ab6c999b68378c9fff8474f57f0efdb.tar.gz ngircd-207937da2ab6c999b68378c9fff8474f57f0efdb.zip | |
- neue Message ERR_CHANOPRIVSNEEDED_MSG definiert.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/messages.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ngircd/messages.h b/src/ngircd/messages.h index 29954929..46b15350 100644 --- a/src/ngircd/messages.h +++ b/src/ngircd/messages.h @@ -9,11 +9,14 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: messages.h,v 1.25 2002/02/11 15:48:39 alex Exp $ + * $Id: messages.h,v 1.26 2002/02/11 23:33:12 alex Exp $ * * irc.h: IRC-Befehle (Header) * * $Log: messages.h,v $ + * Revision 1.26 2002/02/11 23:33:12 alex + * - neue Message ERR_CHANOPRIVSNEEDED_MSG definiert. + * * Revision 1.25 2002/02/11 15:48:39 alex * - neue Nachricht RPL_CHANNELMODEIS definiert. * @@ -235,6 +238,9 @@ #define ERR_NOPRIVILEGES "481" #define ERR_NOPRIVILEGES_MSG ERR_NOPRIVILEGES" %s :Permission denied" +#define ERR_CHANOPRIVSNEEDED "482" +#define ERR_CHANOPRIVSNEEDED_MSG ERR_CHANOPRIVSNEEDED" %s %s :You are not channel operator" + #define ERR_RESTRICTED "484" #define ERR_RESTRICTED_MSG ERR_RESTRICTED" %s :Your connection is restricted" |