Revert macroization, as the default mountpath doesn't match the
default export path.
This commit is contained in:
parent
2a392db81b
commit
9749b7715b
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: rumpnfsd.c,v 1.2 2010/07/30 16:15:06 pooka Exp $ */
|
||||
/* $NetBSD: rumpnfsd.c,v 1.3 2010/07/30 21:10:44 pooka Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2010 The NetBSD Foundation, Inc.
|
||||
|
@ -93,7 +93,11 @@ main(int argc, char *argv[])
|
|||
rump_sys_mkdir("/var/db", 0777);
|
||||
|
||||
fprintf(stderr, "imagename %s\n", imagename);
|
||||
FSTEST_CONSTRUCTOR(NULL, ffs, fsarg);
|
||||
if (ffs_fstest_newfs(NULL, &fsarg,
|
||||
FSTEST_IMGNAME, FSTEST_IMGSIZE, NULL) != 0)
|
||||
atf_tc_fail("newfs failed");
|
||||
if (ffs_fstest_mount(NULL, fsarg, exportpath, 0) != 0)
|
||||
atf_tc_fail("mount failed");
|
||||
|
||||
#if 0
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue