If the line wasn't for the client we are looking for, skip it.
While I'm here, I indented the continuation line properly.
This commit is contained in:
parent
76405ae56d
commit
e9aaacc880
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: bootparamd.c,v 1.34 2000/06/28 01:30:56 thorpej Exp $ */
|
/* $NetBSD: bootparamd.c,v 1.35 2000/07/04 08:18:44 enami Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This code is not copyright, and is placed in the public domain.
|
* This code is not copyright, and is placed in the public domain.
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
__RCSID("$NetBSD: bootparamd.c,v 1.34 2000/06/28 01:30:56 thorpej Exp $");
|
__RCSID("$NetBSD: bootparamd.c,v 1.35 2000/07/04 08:18:44 enami Exp $");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
@ -396,7 +396,8 @@ lookup_bootparam(client, client_canonical, id, server, path)
|
||||||
canon = hp->h_name;
|
canon = hp->h_name;
|
||||||
else
|
else
|
||||||
canon = word;
|
canon = word;
|
||||||
}
|
} else
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
#undef HASGLOB
|
#undef HASGLOB
|
||||||
|
|
Loading…
Reference in New Issue