Changeset 1772 in MondoRescue for branches/2.2.5/mindi-busybox/networking


Ignore:
Timestamp:
Nov 6, 2007, 9:23:18 PM (16 years ago)
Author:
Bruno Cornec
Message:

Update mindi-busybox to 1.7.3

Location:
branches/2.2.5/mindi-busybox/networking
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.5/mindi-busybox/networking/httpd.c

    r1765 r1772  
    11861186     * and send it to the peer. So please no SIGPIPEs! */
    11871187    signal(SIGPIPE, SIG_IGN);
     1188
     1189    /* Accound for POSTDATA already in hdr_buf */
     1190    bodyLen -= hdr_cnt;
    11881191
    11891192    /* This loop still looks messy. What is an exit criteria?
  • branches/2.2.5/mindi-busybox/networking/inetd.c

    r1765 r1772  
    735735    /* goto more; */
    736736
    737     sep->se_server = xxstrdup(skip(&cp));
     737    arg = skip(&cp);
     738    sep->se_server = xxstrdup(arg);
    738739    if (strcmp(sep->se_server, "internal") == 0) {
    739740#ifdef INETD_FEATURE_ENABLED
     
    760761#endif
    761762    argc = 0;
    762     for (arg = skip(&cp); cp; arg = skip(&cp)) {
     763    for (; cp; arg = skip(&cp)) {
    763764        if (argc < MAXARGV)
    764765            sep->se_argv[argc++] = xxstrdup(arg);
  • branches/2.2.5/mindi-busybox/networking/libiproute/iptunnel.c

    r1765 r1772  
    242242            NEXT_ARG();
    243243            key = index_in_strings(keywords, *argv);
    244             if (key == ARG_any)
     244            if (key != ARG_any)
    245245                p->iph.daddr = get_addr32(*argv);
    246246        } else if (key == ARG_local) {
    247247            NEXT_ARG();
    248248            key = index_in_strings(keywords, *argv);
    249             if (key == ARG_any)
     249            if (key != ARG_any)
    250250                p->iph.saddr = get_addr32(*argv);
    251251        } else if (key == ARG_dev) {
Note: See TracChangeset for help on using the changeset viewer.