Navigation



Ignore:
Timestamp:
Mar 15, 2013, 2:14:35 AM (11 years ago)
Author:
Thomas Klausner <tk@giga.or.at>
Branch:
default
Phase:
public
Message:

Remove newlines from fd_log_debug, TRACE_DEBUG, TRACE_ERROR, and TRACE_DEBUG_ERROR
(as far as sed could find them)
with manual fixing afterwards.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/app_redirect/ard_conf.l

    r740 r974  
    8282                                if (ret != 1) {
    8383                                        /* No matching: an error occurred */
    84                                         fd_log_debug("Unable to convert the value '%s' to a valid number: %s\n", yytext, strerror(errno));
     84                                        fd_log_debug("Unable to convert the value '%s' to a valid number: %s", yytext, strerror(errno));
    8585                                        return TOK_LEX_ERROR; /* trig an error in yacc parser */
    8686                                        /* Maybe we could REJECT instead of failing here? */
     
    9494                                CHECK_MALLOC_DO( yylval->tstring.str = strdup(yytext+2),
    9595                                {
    96                                         TRACE_DEBUG(INFO, "Unable to copy the string '%s': %s\n", yytext, strerror(errno));
     96                                        TRACE_DEBUG(INFO, "Unable to copy the string '%s': %s", yytext, strerror(errno));
    9797                                        return TOK_LEX_ERROR; /* trig an error in yacc parser */
    9898                                } );
     
    107107                                CHECK_MALLOC_DO( yylval->tstring.str = strdup(yytext+1),
    108108                                {
    109                                         TRACE_DEBUG(INFO, "Unable to copy the string '%s': %s\n", yytext, strerror(errno));
     109                                        TRACE_DEBUG(INFO, "Unable to copy the string '%s': %s", yytext, strerror(errno));
    110110                                        return TOK_LEX_ERROR; /* trig an error in yacc parser */
    111111                                } );
     
    134134        /* Unrecognized sequence, if it did not match any previous pattern */
    135135[^[:space:]\":=;\n]+    {
    136                                 fd_log_debug("Unrecognized text on line %d col %d: '%s'.\n", yylloc->first_line, yylloc->first_column, yytext);
     136                                fd_log_debug("Unrecognized text on line %d col %d: '%s'.", yylloc->first_line, yylloc->first_column, yytext);
    137137                                return TOK_LEX_ERROR;
    138138                        }
Note: See TracChangeset for help on using the changeset viewer.