aboutsummaryrefslogtreecommitdiff
path: root/serverboot/bootstrap.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2001-08-17 04:48:03 +0000
committerRoland McGrath <roland@gnu.org>2001-08-17 04:48:03 +0000
commited04b038e834eeee56a28d27789649dffe72b2b2 (patch)
tree48ac73b82f3253cb6cbe9c8f4586e6db6ae7e9f5 /serverboot/bootstrap.c
parent1fa4593b8c243a45ff70b7704568c683ed832eb0 (diff)
downloadhurd-ed04b038e834eeee56a28d27789649dffe72b2b2.tar.gz
hurd-ed04b038e834eeee56a28d27789649dffe72b2b2.tar.bz2
hurd-ed04b038e834eeee56a28d27789649dffe72b2b2.zip
2001-08-16 Roland McGrath <roland@frob.com>
* Makefile (OBJS): Add userland-boot.o here. Add a vpath to find userland-boot.c in boot/ too. * bootstrap.c (parse_script): Pass new arg to boot_script_parse_line. * load.c: Include <stddef.h> before "boot_script.h".
Diffstat (limited to 'serverboot/bootstrap.c')
-rw-r--r--serverboot/bootstrap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/serverboot/bootstrap.c b/serverboot/bootstrap.c
index 46935a26..3d298a5a 100644
--- a/serverboot/bootstrap.c
+++ b/serverboot/bootstrap.c
@@ -474,7 +474,7 @@ parse_script (struct file *f)
while (p < buf + f->f_size && *p != '\n')
p++;
*p = '\0';
- err = boot_script_parse_line (line);
+ err = boot_script_parse_line (0, line);
if (err)
boot_panic (err);
if (p == buf + f->f_size)