Changeset 3232 in MondoRescue for branches/3.2/mindi-busybox/scripts/basic
- Timestamp:
- Jan 1, 2014, 12:47:38 AM (11 years ago)
- Location:
- branches/3.2/mindi-busybox/scripts/basic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mindi-busybox/scripts/basic/docproc.c
r2725 r3232 40 40 #include <sys/types.h> 41 41 #include <sys/wait.h> 42 #include <alloca.h> 42 43 43 44 /* exitstatus is used to keep track of any failing calls to kernel-doc, … … 213 214 * Call kernel-doc with following parameters: 214 215 * kernel-doc -docbook -nofunction function_name1 filename 215 * function names are obtained from all the thesrc files216 * function names are obtained from all the src files 216 217 * by find_export_symbols. 217 218 * intfunc uses -nofunction -
branches/3.2/mindi-busybox/scripts/basic/fixdep.c
r2725 r3232 114 114 #include <ctype.h> 115 115 #include <arpa/inet.h> 116 #include <alloca.h> 116 117 117 118 /* bbox: not needed … … 330 331 331 332 while (m < end) { 332 while (m < end && (*m == ' ' || *m == '\\' || *m == '\n' ))333 while (m < end && (*m == ' ' || *m == '\\' || *m == '\n' || *m == '\r')) 333 334 m++; 334 335 p = m;
Note:
See TracChangeset
for help on using the changeset viewer.