diff options
| author | Alexander Barton <alex@barton.de> | 2002-02-27 20:33:01 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-02-27 20:33:01 +0000 |
| commit | d58e22a3eab0741d6a471229c3c451ec1ae395bf (patch) | |
| tree | 87ff492af423b755b326c9e1e34d95d9e6c3acaa | |
| parent | 8975c7a20490da16d27b61e99945a8ce274804ee (diff) | |
| download | ngircd-d58e22a3eab0741d6a471229c3c451ec1ae395bf.tar.gz ngircd-d58e22a3eab0741d6a471229c3c451ec1ae395bf.zip | |
- neue Text-Konstante: ERR_NOTONCHANNEL_MSG
| -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 f12ee012..a5ece1fb 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.32 2002/02/27 18:23:24 alex Exp $ + * $Id: messages.h,v 1.33 2002/02/27 20:33:01 alex Exp $ * * irc.h: IRC-Befehle (Header) * * $Log: messages.h,v $ + * Revision 1.33 2002/02/27 20:33:01 alex + * - neue Text-Konstante: ERR_NOTONCHANNEL_MSG + * * Revision 1.32 2002/02/27 18:23:24 alex * - neue Text-Konstanten RPL_UNAWAY_MSG und RPL_NOWAWAY_MSG. * @@ -256,6 +259,9 @@ #define ERR_NICKNAMEINUSE "433" #define ERR_NICKNAMEINUSE_MSG ERR_NICKNAMEINUSE" %s %s :Nickname already in use" +#define ERR_NOTONCHANNEL "442" +#define ERR_NOTONCHANNEL_MSG ERR_NOTONCHANNEL" %s %s :You are not on that channel" + #define ERR_NOTREGISTERED "451" #define ERR_NOTREGISTERED_MSG ERR_NOTREGISTERED" %s :Connection not registered" #define ERR_NOTREGISTEREDSERVER_MSG ERR_NOTREGISTERED" %s :Connection not registered as server link" |