diff --git a/src/sys/ubixfs/directory.c b/src/sys/ubixfs/directory.c index 0e256c5..bf0a426 100644 --- a/src/sys/ubixfs/directory.c +++ b/src/sys/ubixfs/directory.c @@ -24,6 +24,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. $Log$ + Revision 1.5 2004/06/04 10:19:42 reddawg + notes: we compile again, thank g-d anyways i was about to cry + Revision 1.4 2004/05/19 15:20:06 reddawg Fixed reference problems due to changes in drive subsystem @@ -107,7 +110,7 @@ return(0x0); } -int mkDirUbixFS(char *directory,fileDescriptor *fd) { +int ubixFSmkDir(char *directory,fileDescriptor *fd) { int block = 0x0; struct directoryEntry *dir = 0x0; diff --git a/src/sys/ubixfs/ubixfs.c b/src/sys/ubixfs/ubixfs.c index 9873fea..e5ad272 100644 --- a/src/sys/ubixfs/ubixfs.c +++ b/src/sys/ubixfs/ubixfs.c @@ -44,7 +44,7 @@ int enableUbixFS() { /* Add UbixFS */ - if (vfsRegisterFS(0,initUbixFS,readUbixFS,writeUbixFS,openFileUbixFS,ubixFSUnlink,mkDirUbixFS,0x0,0x0) != 0x0) { + if (vfsRegisterFS(0,initUbixFS,readUbixFS,writeUbixFS,openFileUbixFS,ubixFSUnlink,ubixFSmkDir,0x0,0x0) != 0x0) { kpanic("Unable To Enable UbixFS"); return(0x1); } @@ -321,6 +321,9 @@ /*** $Log$ + Revision 1.9 2004/06/04 10:19:42 reddawg + notes: we compile again, thank g-d anyways i was about to cry + Revision 1.8 2004/06/01 00:04:53 reddawg Try now mark