Ignore:
Timestamp:
Jul 26, 2011, 1:25:42 AM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update to upstream busybox 1.18.5
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/modutils/modutils-24.c

    r2725 r2859  
    24752475        p = val;
    24762476        while (*p != 0) {
     2477            char sv_ch;
    24772478            char *endp;
    24782479
     
    24832484            case 's':
    24842485                len = strcspn(p, ",");
     2486                sv_ch = p[len];
    24852487                p[len] = 0;
    24862488                obj_string_patch(f, sym->secidx,
     
    24882490                loc += tgt_sizeof_char_p;
    24892491                p += len;
     2492                *p = sv_ch;
    24902493                break;
    24912494            case 'c':
    24922495                len = strcspn(p, ",");
     2496                sv_ch = p[len];
    24932497                p[len] = 0;
    24942498                if (len >= charssize)
     
    24982502                loc += charssize;
    24992503                p += len;
     2504                *p = sv_ch;
    25002505                break;
    25012506            case 'b':
Note: See TracChangeset for help on using the changeset viewer.