Changes by: uvman
Update of /cvs/linux-ntfs/ntfsprogs/libntfs
In directory delta357.server4you.de:/tmp/cvs-serv24729/libntfs
Modified Files:
dir.c index.c logging.c unistr.c
Log Message:
Comment documentation fixes.
Index: dir.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/libntfs/dir.c,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -p -r1.64 -r1.65
--- dir.c 14 Aug 2006 03:52:56 -0000 1.64
+++ dir.c 25 Sep 2006 16:58:38 -0000 1.65
@@ -600,8 +600,7 @@ static const ntfschar dotdot[3] = { cons
const_cpu_to_le16('\0') };
/*
- * union index_union -
- * More helpers for ntfs_readdir().
+ * union index_union - Helper for ntfs_readdir().
*/
typedef union {
INDEX_ROOT *ir;
@@ -609,8 +608,7 @@ typedef union {
} index_union __attribute__((__transparent_union__));
/**
- * enum INDEX_TYPE -
- * More helpers for ntfs_readdir().
+ * enum INDEX_TYPE - Helper for ntfs_readdir().
*/
typedef enum {
INDEX_TYPE_ROOT, /* index root */
@@ -1446,7 +1444,7 @@ ntfs_inode *ntfs_create_symlink(ntfs_ino
/**
* ntfs_delete - delete file or directory from ntfs volume
- * @ni: ntfs inode for object to delte
+ * @ni: ntfs inode for object to delete
* @dir_ni: ntfs inode for directory in which delete object
* @name: unicode name of the object to delete
* @name_len: length of the name in unicode characters
Index: index.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/libntfs/index.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -p -r1.29 -r1.30
--- index.c 2 Aug 2006 03:55:41 -0000 1.29
+++ index.c 25 Sep 2006 16:58:38 -0000 1.30
@@ -1261,6 +1261,8 @@ static int ntfs_ir_insert_median(ntfs_in
static int ntfs_ib_split(ntfs_index_context *icx, INDEX_BLOCK *ib);
/**
+ * ntfs_ib_insert - insert an index block to an index context.
+ *
* On success return STATUS_OK or STATUS_KEEP_SEARCHING.
* On error return STATUS_ERROR.
*/
@@ -1490,8 +1492,10 @@ out:
}
/**
- * Used if an empty index block to be deleted has END entry as the parent
- * in the INDEX_ROOT which is the only one there.
+ * ntfs_ir_leafify -
+ *
+ * Used if an empty index block to be deleted has END entry as the parent
+ * in the INDEX_ROOT which is the only one there.
*/
static void ntfs_ir_leafify(ntfs_index_context *icx, INDEX_HEADER *ih)
{
@@ -1514,8 +1518,10 @@ static void ntfs_ir_leafify(ntfs_index_c
}
/**
- * Used if an empty index block to be deleted has END entry as the parent
- * in the INDEX_ROOT which is not the only one there.
+ * ntfs_ih_reparent_end -
+ *
+ * Used if an empty index block to be deleted has END entry as the parent
+ * in the INDEX_ROOT which is not the only one there.
*/
static int ntfs_ih_reparent_end(ntfs_index_context *icx, INDEX_HEADER *ih,
INDEX_BLOCK *ib)
Index: logging.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/libntfs/logging.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -p -r1.11 -r1.12
--- logging.c 22 Feb 2006 14:20:09 -0000 1.11
+++ logging.c 25 Sep 2006 16:58:38 -0000 1.12
@@ -69,8 +69,7 @@ struct ntfs_logging {
};
/**
- * ntfs_log
- * This struct controls all the logging within the library and tools.
+ * ntfs_log - This struct controls all the logging in the library and tools.
*/
static struct ntfs_logging ntfs_log = {
#ifdef DEBUG
Index: unistr.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/libntfs/unistr.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -p -r1.34 -r1.35
--- unistr.c 5 Apr 2006 02:45:56 -0000 1.34
+++ unistr.c 25 Sep 2006 16:58:38 -0000 1.35
@@ -741,7 +741,7 @@ ntfschar *ntfs_str2ucs(const char *s, in
/**
* ntfs_ucsfree - free memory allocated by ntfs_str2ucs()
- * @ucs input string to be freed
+ * @ucs: input string to be freed
*
* Free memory at @ucs and which was allocated by ntfs_str2ucs.
*
|