Fix wrong syscall name.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Wed, 21 Jul 1993 06:02:28 +0000 (06:02 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Wed, 21 Jul 1993 06:02:28 +0000 (06:02 +0000)
v7/src/microcode/ntfs.c

index 007e0389e16e48ad897e6c4aaa569e23d7536128..c6178a2f350bf029131abb715a8d381aea1688c2 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: ntfs.c,v 1.3 1993/06/24 02:00:59 gjr Exp $
+$Id: ntfs.c,v 1.4 1993/07/21 06:02:28 gjr Exp $
 
 Copyright (c) 1992-1993 Massachusetts Institute of Technology
 
@@ -145,9 +145,8 @@ DEFUN (OS_directory_make, (name), CONST char * name)
 void
 DEFUN (OS_directory_delete, (name), CONST char * name)
 {
-  STD_VOID_SYSTEM_CALL (syscall_mkdir, (RemoveDirectory(name)));
+  STD_VOID_SYSTEM_CALL (syscall_rmdir, (RemoveDirectory (name)));
 }
-
 \f
 /* This is such that directory open does not return the first file */
 #define DIR_UNALLOCATED (-1L)