svn commit: trunk/busybox/include

vda at busybox.net vda at busybox.net
Thu Oct 26 23:32:44 UTC 2006


Author: vda
Date: 2006-10-26 16:32:43 -0700 (Thu, 26 Oct 2006)
New Revision: 16448

Log:
Fix minor breakage in previous commit


Modified:
   trunk/busybox/include/libbb.h


Changeset:
Modified: trunk/busybox/include/libbb.h
===================================================================
--- trunk/busybox/include/libbb.h	2006-10-26 23:25:17 UTC (rev 16447)
+++ trunk/busybox/include/libbb.h	2006-10-26 23:32:43 UTC (rev 16448)
@@ -245,10 +245,10 @@
 extern char  bb_process_escape_sequence(const char **ptr);
 extern char *bb_get_last_path_component(char *path);
 
-/* Prints to stdout closes entire FILE. Exits on error: */
+/* Reads and prints to stdout till eof, then closes FILE. Exits on error: */
 extern void xprint_and_close_file(FILE *file);
 extern char *xmalloc_fgets(FILE *file);
-/* /* Read up to (and including) TERMINATING_STRING: */
+/* Read up to (and including) TERMINATING_STRING: */
 extern char *xmalloc_fgets_str(FILE *file, const char *terminating_string);
 /* Chops off '\n' from the end, unlike fgets: */
 extern char *xmalloc_getline(FILE *file);




More information about the busybox-cvs mailing list