diff options
| author | Alexander Barton <alex@barton.de> | 2005-04-27 07:34:25 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2005-04-27 07:34:25 +0000 |
| commit | dfe662ad45e6c1f434b42acb28e90be8369a0a27 (patch) | |
| tree | 1537df6a6dfa73bd96217fc05a44562e975051f2 | |
| parent | 7daa7fb278bb426baf7ae51ca8191ef1edbf81d8 (diff) | |
| download | ngircd-dfe662ad45e6c1f434b42acb28e90be8369a0a27.tar.gz ngircd-dfe662ad45e6c1f434b42acb28e90be8369a0a27.zip | |
Added missing #include of "defines.h".
| -rw-r--r-- | src/ngircd/channel.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ngircd/channel.c b/src/ngircd/channel.c index 2642392c..f92f20db 100644 --- a/src/ngircd/channel.c +++ b/src/ngircd/channel.c @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) + * Copyright (c)2001-2005 by Alexander Barton (alex@barton.de) * * 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 @@ -17,7 +17,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: channel.c,v 1.46 2005/03/19 18:43:48 fw Exp $"; +static char UNUSED id[] = "$Id: channel.c,v 1.47 2005/04/27 07:34:25 alex Exp $"; #include "imp.h" #include <assert.h> @@ -25,6 +25,7 @@ static char UNUSED id[] = "$Id: channel.c,v 1.46 2005/03/19 18:43:48 fw Exp $"; #include <string.h> #include <strings.h> +#include "defines.h" #include "conn-func.h" #include "client.h" |