Date: Tuesday May 1, 2001 @ 21:00 Author: cameron Update of /home/netrek/cvsroot/Vanilla/newstartd In directory swashbuckler.fortress.real-time.com:/var/tmp/cvs-serv1006/newstartd Modified Files: Makefile.in newaccess.c newstartd.c Log Message: Wed May 2 12:34:59 2001 James Cameron <quozl at us.netrek.org> * all: move include files to own directory. Changes were contributed by Benjamin `Quisar' Lerman <quisar at quisar.ambre.net> and verified by me. **************************************** Index: Vanilla/newstartd/Makefile.in diff -u Vanilla/newstartd/Makefile.in:1.2 Vanilla/newstartd/Makefile.in:1.3 --- Vanilla/newstartd/Makefile.in:1.2 Mon Apr 30 04:34:36 2001 +++ Vanilla/newstartd/Makefile.in Tue May 1 21:00:19 2001 @@ -20,7 +20,7 @@ GETPATH_SRC = ${srcdir}/../ntserv/getpath.c ${srcdir}/../ntserv/data.c GETPATH = ../ntserv/getpath.o ../ntserv/data.o -CFLAGS = $(FLAGS) $(EXTRAFLAGS) $(FILES) $(DIRS) $(PORT) +CFLAGS = $(FLAGS) $(EXTRAFLAGS) $(PORT) -I. -I${srcdir} -I../include -I${srcdir}/../include all: newstartd Index: Vanilla/newstartd/newaccess.c diff -u Vanilla/newstartd/newaccess.c:1.4 Vanilla/newstartd/newaccess.c:1.5 --- Vanilla/newstartd/newaccess.c:1.4 Fri Apr 30 15:18:39 1999 +++ Vanilla/newstartd/newaccess.c Tue May 1 21:00:19 2001 @@ -1,7 +1,7 @@ -/* $Id: newaccess.c,v 1.4 1999/04/30 20:18:39 ahn Exp $ */ +/* $Id: newaccess.c,v 1.5 2001/05/02 02:00:19 cameron Exp $ */ #ifdef lint -static char vcid[] = "$Id: newaccess.c,v 1.4 1999/04/30 20:18:39 ahn Exp $"; +static char vcid[] = "$Id: newaccess.c,v 1.5 2001/05/02 02:00:19 cameron Exp $"; #endif /* lint */ #include <stdio.h> @@ -16,9 +16,9 @@ #include <signal.h> -#include "../ntserv/defs.h" +#include "defs.h" #include INC_STRINGS -#include "../ntserv/data.h" +#include "data.h" /*#define SUBNET*/ #define LOG Index: Vanilla/newstartd/newstartd.c diff -u Vanilla/newstartd/newstartd.c:1.18 Vanilla/newstartd/newstartd.c:1.19 --- Vanilla/newstartd/newstartd.c:1.18 Mon Feb 28 20:51:05 2000 +++ Vanilla/newstartd/newstartd.c Tue May 1 21:00:19 2001 @@ -1,7 +1,7 @@ -/* $Id: newstartd.c,v 1.18 2000/02/29 02:51:05 karthik Exp $ */ +/* $Id: newstartd.c,v 1.19 2001/05/02 02:00:19 cameron Exp $ */ #ifndef lint -static char vcid[] = "$Id: newstartd.c,v 1.18 2000/02/29 02:51:05 karthik Exp $"; +static char vcid[] = "$Id: newstartd.c,v 1.19 2001/05/02 02:00:19 cameron Exp $"; #endif /* lint */ /* @@ -49,14 +49,14 @@ #include <sys/wait.h> #include <sys/stat.h> -#include "../ntserv/defs.h" +#include "defs.h" #include INC_STRINGS #include INC_FCNTL -#include "../ntserv/data.h" -#include "../ntserv/proto.h" +#include "data.h" +#include "proto.h" #define MVERS -#include "../version.h" -#include "../patchlevel.h" +#include "version.h" +#include "patchlevel.h" int restart; /* global flag, set by SIGHUP, cleared by read */ int debug = 0; /* programmers' debugging flag */