svn commit: trunk/busybox/include

aldot at busybox.net aldot at busybox.net
Sun Apr 2 20:12:33 UTC 2006


Author: aldot
Date: 2006-04-02 13:12:31 -0700 (Sun, 02 Apr 2006)
New Revision: 14727

Log:
- typo: s/compenent/component/g
  add a bit of documentation.


Modified:
   trunk/busybox/include/unarchive.h


Changeset:
Modified: trunk/busybox/include/unarchive.h
===================================================================
--- trunk/busybox/include/unarchive.h	2006-04-02 18:57:20 UTC (rev 14726)
+++ trunk/busybox/include/unarchive.h	2006-04-02 20:12:31 UTC (rev 14727)
@@ -1,3 +1,4 @@
+/* vi: set sw=4 ts=4: */
 #ifndef	__UNARCHIVE_H__
 #define	__UNARCHIVE_H__
 
@@ -25,11 +26,13 @@
 } file_header_t;
 
 typedef struct archive_handle_s {
-	/* define if the header and data compenent should processed */
+	/* define if the header and data component should processed */
 	char (*filter)(struct archive_handle_s *);
 	llist_t *accept;
+	/* List of files that have been rejected */
 	llist_t *reject;
-	llist_t *passed;	/* List of files that have successfully been worked on */
+	/* List of files that have successfully been worked on */
+	llist_t *passed;
 
 	/* Contains the processed header entry */
 	file_header_t *file_header;
@@ -58,7 +61,7 @@
 	/* Temporary storage */
 	char *buffer;
 
-	/* Misc. stuff */
+	/* Flags and misc. stuff */
 	unsigned char flags;
 
 } archive_handle_t;




More information about the busybox-cvs mailing list