Changeset 3232 in MondoRescue for branches/3.2/mindi-busybox/scripts/basic


Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (11 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
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  
    4040#include <sys/types.h>
    4141#include <sys/wait.h>
     42#include <alloca.h>
    4243
    4344/* exitstatus is used to keep track of any failing calls to kernel-doc,
     
    213214 * Call kernel-doc with following parameters:
    214215 * kernel-doc -docbook -nofunction function_name1 filename
    215  * function names are obtained from all the the src files
     216 * function names are obtained from all the src files
    216217 * by find_export_symbols.
    217218 * intfunc uses -nofunction
  • branches/3.2/mindi-busybox/scripts/basic/fixdep.c

    r2725 r3232  
    114114#include <ctype.h>
    115115#include <arpa/inet.h>
     116#include <alloca.h>
    116117
    117118/* bbox: not needed
     
    330331
    331332    while (m < end) {
    332         while (m < end && (*m == ' ' || *m == '\\' || *m == '\n'))
     333        while (m < end && (*m == ' ' || *m == '\\' || *m == '\n' || *m == '\r'))
    333334            m++;
    334335        p = m;
Note: See TracChangeset for help on using the changeset viewer.