Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/libbb/xregcomp.c

    r1765 r2725  
    66 * If you wrote this, please acknowledge your work.
    77 *
    8  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
     8 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
    99 */
    1010
     
    1212#include "xregex.h"
    1313
    14 char* regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags)
     14char* FAST_FUNC regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags)
    1515{
    1616    int ret = regcomp(preg, regex, cflags);
     
    2424}
    2525
    26 void xregcomp(regex_t *preg, const char *regex, int cflags)
     26void FAST_FUNC xregcomp(regex_t *preg, const char *regex, int cflags)
    2727{
    2828    char *errmsg = regcomp_or_errmsg(preg, regex, cflags);
    2929    if (errmsg) {
    30         bb_error_msg_and_die("xregcomp: %s", errmsg);
     30        bb_error_msg_and_die("bad regex '%s': %s", regex, errmsg);
    3131    }
    3232}
Note: See TracChangeset for help on using the changeset viewer.