From: David van Moolenbroek Date: Fri, 8 May 2009 20:37:06 +0000 (+0000) Subject: fix for commands that try to include mfs constants from vfs X-Git-Tag: v3.1.4~51 X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=021808b12a279f521f433481a8909b95b0a0e4de;p=minix.git fix for commands that try to include mfs constants from vfs --- diff --git a/commands/simple/cdprobe.c b/commands/simple/cdprobe.c index 451167f61..df7de4f87 100644 --- a/commands/simple/cdprobe.c +++ b/commands/simple/cdprobe.c @@ -22,7 +22,7 @@ #include #include -#include "../../servers/vfs/const.h" +#include "../../servers/mfs/const.h" char pvd[CD_SECTOR]; diff --git a/commands/simple/mount.c b/commands/simple/mount.c index 603fcedd1..2bf4277cd 100755 --- a/commands/simple/mount.c +++ b/commands/simple/mount.c @@ -14,7 +14,7 @@ #include #include #include -#include "../../servers/vfs/const.h" +#include "../../servers/mfs/const.h" _PROTOTYPE(int main, (int argc, char **argv)); _PROTOTYPE(void list, (void));