1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-09-22 20:24:03 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Alexander Barton
2a3ec21702 Version 0.8.0-pre1 2004-05-07 11:56:19 +00:00
Alexander Barton
9f9576ce31 New "chroot" feature (from Benjamin Pineau), introducing new configuration
variables "ChrootDir" and "MotdPhrase". [from HEAD]
2004-05-07 11:24:17 +00:00
15 changed files with 18 additions and 18 deletions

View File

@@ -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 $

View File

@@ -10,7 +10,7 @@
-- ChangeLog --
ngIRCd CVSHEAD
ngIRCd 0.8.0-pre1 (2004-05-07)
- Two new configuration options: "ChrootDir" and "MotdPhrase", thanks to
Benjamin Pineau <ben@zouh.org>. Now you can force the daemon to change
@@ -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.2 2004/05/07 11:56:19 alex Exp $

View File

@@ -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 $

4
NEWS
View File

@@ -10,7 +10,7 @@
-- NEWS --
ngIRCd CVSHEAD
ngIRCd 0.8.0-pre1 (2004-05-07)
- Two new configuration options: "ChrootDir" and "MotdPhrase", thanks to
Benjamin Pineau <ben@zouh.org>. Now you can force the daemon to change
@@ -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.2 2004/05/07 11:56:19 alex Exp $

2
README
View File

@@ -84,4 +84,4 @@ mail to: <alex@barton.de> or <alex@arthur.ath.cx>
--
$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 $

View File

@@ -8,13 +8,13 @@
# (at your option) any later version.
# Please read the file COPYING, README and AUTHORS for more information.
#
# $Id: configure.in,v 1.102 2004/04/11 13:20:24 alex Exp $
# $Id: configure.in,v 1.102.2.1 2004/05/07 11:56:19 alex Exp $
#
# -- Initialisation --
AC_PREREQ(2.50)
AC_INIT(ngircd, CVSHEAD)
AC_INIT(ngircd, 0.8.0-pre1)
AC_CONFIG_SRCDIR(src/ngircd/ngircd.c)
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE(1.6)

View File

@@ -1,5 +1,5 @@
%define name ngircd
%define version CVSHEAD
%define version 0.8.0-pre1
%define release 1
%define prefix %{_prefix}

View File

@@ -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

View File

@@ -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

View File

@@ -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 <assert.h>

View File

@@ -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)
*/

View File

@@ -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.
*/

View File

@@ -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 <assert.h>

View File

@@ -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 <assert.h>

View File

@@ -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 <assert.h>