From 021808b12a279f521f433481a8909b95b0a0e4de Mon Sep 17 00:00:00 2001 From: David van Moolenbroek Date: Fri, 8 May 2009 20:37:06 +0000 Subject: [PATCH] fix for commands that try to include mfs constants from vfs --- commands/simple/cdprobe.c | 2 +- commands/simple/mount.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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));