Code cleanup in nodelist parser

This commit is contained in:
Michiel Broek 2004-07-10 11:25:49 +00:00
parent 0360d3613d
commit d7a6aeb162
3 changed files with 4 additions and 17 deletions

View File

@ -51,18 +51,6 @@ static int getsrv(char**);
struct _pkey pkey[] = {
{(char *)"Down", NL_NODE, NL_DOWN},
{(char *)"Hold", NL_NODE, NL_HOLD},
{(char *)"Region", NL_REGION, NL_REGION},
{(char *)"Host", NL_HOST, NL_HOST},
{(char *)"Hub", NL_HUB, NL_HUB},
{(char *)"Point", NL_POINT, NL_POINT},
{(char *)"Pvt", NL_NODE, NL_NODE},
{NULL, 0, 0}
};
/* /*
* Table to parse the ~/etc/nodelist.conf file * Table to parse the ~/etc/nodelist.conf file
*/ */
@ -543,7 +531,7 @@ node *getnlent(faddr *addr)
{ {
FILE *fp, *np; FILE *fp, *np;
static node nodebuf; static node nodebuf;
static char buf[2048], ebuf[2048], *p, *q, tbuf[256]; static char buf[MAXNLLINELEN], ebuf[MAXNLLINELEN], *p, *q, tbuf[256];
struct _ixentry xaddr; struct _ixentry xaddr;
int i, Found = FALSE, ixflag, stdflag, ndrecord = FALSE; int i, Found = FALSE, ixflag, stdflag, ndrecord = FALSE;
char *mydomain, *path, *r; char *mydomain, *path, *r;

View File

@ -75,7 +75,6 @@ reqbits RQ_WR 0x00000004 # Wazoo request
reqbits RQ_WU 0x00000008 # Wazoo update reqbits RQ_WU 0x00000008 # Wazoo update
# Network services, the valid IP flags translated to the internet service # Network services, the valid IP flags translated to the internet service
# names and their default ports. # names and their default ports.
# #

View File

@ -7,7 +7,7 @@
#define MAXNAME 35 #define MAXNAME 35
#define MAXUFLAGS 16 #define MAXUFLAGS 16
#define MAXNLLINELEN 1024
/* /*