From 9f9576ce31c7b84638b34a49e4779829fa7cb3da Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Fri, 7 May 2004 11:24:17 +0000 Subject: [PATCH] New "chroot" feature (from Benjamin Pineau), introducing new configuration variables "ChrootDir" and "MotdPhrase". [from HEAD] --- AUTHORS | 2 +- ChangeLog | 2 +- INSTALL | 2 +- NEWS | 2 +- README | 2 +- doc/sample-ngircd.conf | 2 +- man/ngircd.conf.5 | 2 +- src/ngircd/conf.c | 2 +- src/ngircd/conf.h | 2 +- src/ngircd/defines.h | 2 +- src/ngircd/irc-info.c | 2 +- src/ngircd/log.c | 2 +- src/ngircd/ngircd.c | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/AUTHORS b/AUTHORS index 6cca6cb4..58d756e7 100644 --- a/AUTHORS +++ b/AUTHORS @@ -31,4 +31,4 @@ Andrew Tridgell & Martin Pool: strl{cpy|cat}()-functions -- -$Id: AUTHORS,v 1.9 2004/05/07 11:19:20 alex Exp $ +$Id: AUTHORS,v 1.8.2.1 2004/05/07 11:24:17 alex Exp $ diff --git a/ChangeLog b/ChangeLog index 3226ece1..74414a0d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -521,4 +521,4 @@ ngIRCd 0.0.1, 31.12.2001 -- -$Id: ChangeLog,v 1.234 2004/05/07 11:19:20 alex Exp $ +$Id: ChangeLog,v 1.233.2.1 2004/05/07 11:24:17 alex Exp $ diff --git a/INSTALL b/INSTALL index 6df155fd..dc6d102b 100644 --- a/INSTALL +++ b/INSTALL @@ -163,4 +163,4 @@ number. In both cases the server exits after the output. -- -$Id: INSTALL,v 1.19 2004/05/07 11:19:20 alex Exp $ +$Id: INSTALL,v 1.18.2.1 2004/05/07 11:24:17 alex Exp $ diff --git a/NEWS b/NEWS index fdf928d4..9ea8d09c 100644 --- a/NEWS +++ b/NEWS @@ -189,4 +189,4 @@ ngIRCd 0.0.1, 31.12.2001 -- -$Id: NEWS,v 1.65 2004/05/07 11:19:20 alex Exp $ +$Id: NEWS,v 1.64.2.1 2004/05/07 11:24:17 alex Exp $ diff --git a/README b/README index ee4ce5cf..3a005f79 100644 --- a/README +++ b/README @@ -84,4 +84,4 @@ mail to: or -- -$Id: README,v 1.19 2004/05/07 11:19:20 alex Exp $ +$Id: README,v 1.18.2.1 2004/05/07 11:24:17 alex Exp $ diff --git a/doc/sample-ngircd.conf b/doc/sample-ngircd.conf index e8178a5a..7990cfe3 100644 --- a/doc/sample-ngircd.conf +++ b/doc/sample-ngircd.conf @@ -1,4 +1,4 @@ -# $Id: sample-ngircd.conf,v 1.26 2004/05/07 11:19:20 alex Exp $ +# $Id: sample-ngircd.conf,v 1.25.2.1 2004/05/07 11:24:17 alex Exp $ # # This is a sample configuration file for the ngIRCd, which must be adepted diff --git a/man/ngircd.conf.5 b/man/ngircd.conf.5 index 97d77c6d..c7565559 100644 --- a/man/ngircd.conf.5 +++ b/man/ngircd.conf.5 @@ -1,5 +1,5 @@ .\" -.\" $Id: ngircd.conf.5,v 1.13 2004/05/07 11:19:20 alex Exp $ +.\" $Id: ngircd.conf.5,v 1.12.2.1 2004/05/07 11:24:18 alex Exp $ .\" .TH ngircd.conf 5 "Mai 2003" ngircd "ngIRCd Manual" .SH NAME diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c index 1ea1fe74..0585de64 100644 --- a/src/ngircd/conf.c +++ b/src/ngircd/conf.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: conf.c,v 1.64 2004/05/07 11:19:21 alex Exp $"; +static char UNUSED id[] = "$Id: conf.c,v 1.63.2.1 2004/05/07 11:24:18 alex Exp $"; #include "imp.h" #include diff --git a/src/ngircd/conf.h b/src/ngircd/conf.h index 4fbf2d68..84dac986 100644 --- a/src/ngircd/conf.h +++ b/src/ngircd/conf.h @@ -8,7 +8,7 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: conf.h,v 1.29 2004/05/07 11:19:21 alex Exp $ + * $Id: conf.h,v 1.28.2.1 2004/05/07 11:24:18 alex Exp $ * * Configuration management (header) */ diff --git a/src/ngircd/defines.h b/src/ngircd/defines.h index 34951aee..967150a8 100644 --- a/src/ngircd/defines.h +++ b/src/ngircd/defines.h @@ -8,7 +8,7 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: defines.h,v 1.46 2004/05/07 11:19:21 alex Exp $ + * $Id: defines.h,v 1.45.2.1 2004/05/07 11:24:18 alex Exp $ * * Global defines of ngIRCd. */ diff --git a/src/ngircd/irc-info.c b/src/ngircd/irc-info.c index 26306949..7270c014 100644 --- a/src/ngircd/irc-info.c +++ b/src/ngircd/irc-info.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: irc-info.c,v 1.22 2004/05/07 11:19:21 alex Exp $"; +static char UNUSED id[] = "$Id: irc-info.c,v 1.21.2.1 2004/05/07 11:24:18 alex Exp $"; #include "imp.h" #include diff --git a/src/ngircd/log.c b/src/ngircd/log.c index cb149939..171f1fba 100644 --- a/src/ngircd/log.c +++ b/src/ngircd/log.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: log.c,v 1.45 2004/05/07 11:19:21 alex Exp $"; +static char UNUSED id[] = "$Id: log.c,v 1.44.2.1 2004/05/07 11:24:18 alex Exp $"; #include "imp.h" #include diff --git a/src/ngircd/ngircd.c b/src/ngircd/ngircd.c index 8ced6e3f..85111b7f 100644 --- a/src/ngircd/ngircd.c +++ b/src/ngircd/ngircd.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: ngircd.c,v 1.84 2004/05/07 11:19:21 alex Exp $"; +static char UNUSED id[] = "$Id: ngircd.c,v 1.83.2.1 2004/05/07 11:24:18 alex Exp $"; #include "imp.h" #include -- 2.39.2