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/scripts/kconfig/lex.zconf.c_shipped

    r1765 r2725  
    785785{
    786786    int new_size = text_size + size + 1;
     787    if (size > 70) {
     788        fprintf (stderr, "%s:%d error: Overlong line\n",
     789        current_file->name, current_file->lineno);
     790    }
     791
    787792    if (new_size > text_asize) {
    788793        new_size += START_STRSIZE - 1;
     
    842847static int yy_flex_strlen (yyconst char * );
    843848#endif
     849
     850//bbox: suppressing "defined but not used" warning
     851#define YY_NO_INPUT 1
    844852
    845853#ifndef YY_NO_INPUT
     
    22282236FILE *zconf_fopen(const char *name)
    22292237{
    2230     char *env, fullname[PATH_MAX+1];
     2238    char *env;
    22312239    FILE *f;
    22322240
     
    22352243        env = getenv(SRCTREE);
    22362244        if (env) {
     2245            char *fullname = alloca(strlen(env) + strlen(name) + 2);
    22372246            sprintf(fullname, "%s/%s", env, name);
    22382247            f = fopen(fullname, "r");
     
    23152324    return current_pos.file ? current_pos.file->name : "<none>";
    23162325}
    2317 
Note: See TracChangeset for help on using the changeset viewer.