summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/dosfs/msdos_create.c
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2003-07-02 14:09:15 +0000
committerChris Johns <chrisj@rtems.org>2003-07-02 14:09:15 +0000
commitc125425b6183dfceafcdeab10438768c1c18c0e7 (patch)
tree036198822a9244aa422a84409fcf507836ca638d /cpukit/libfs/src/dosfs/msdos_create.c
parentComments have been updated. (diff)
downloadrtems-c125425b6183dfceafcdeab10438768c1c18c0e7.tar.bz2
Patch from Victor V. Vengerov <vvv@oktet.ru> to remove Linux code.
Diffstat (limited to 'cpukit/libfs/src/dosfs/msdos_create.c')
-rw-r--r--cpukit/libfs/src/dosfs/msdos_create.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/cpukit/libfs/src/dosfs/msdos_create.c b/cpukit/libfs/src/dosfs/msdos_create.c
index 4b4c7001ca..c50935021b 100644
--- a/cpukit/libfs/src/dosfs/msdos_create.c
+++ b/cpukit/libfs/src/dosfs/msdos_create.c
@@ -30,11 +30,10 @@
/* msdos_creat_node --
* Create a new node. If a new node is file, FAT 32 Bytes Directory
- * Entry Structure (see M$ White Paper) is initialized, free space is
- * found in parent directory and structure is written to the disk.
- * In case of directory, all above steps present and also new cluster
- * is allocated for a new directory and dot and dotdot nodes are created
- * in alloceted cluster.
+ * Entry Structure is initialized, free space is found in parent
+ * directory and structure is written to the disk. In case of directory,
+ * all above steps present and also new cluster is allocated for a
+ * new directory and dot and dotdot nodes are created in alloceted cluster.
*
* PARAMETERS:
* parent_loc - parent (directory we are going to create node in)
@@ -94,8 +93,7 @@ msdos_creat_node(
/*
* find free space in the parent directory and write new initialized
- * FAT 32 Bytes Directory Entry Structure (see M$ White Paper)
- * to the disk
+ * FAT 32 Bytes Directory Entry Structure to the disk
*/
rc = msdos_get_name_node(parent_loc, NULL, &aux, new_node);
if ( rc != RC_OK )