Navigation


Changeset 974:2091bf698fb1 in freeDiameter for extensions/app_sip


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.

Location:
extensions/app_sip
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/app_sip/app_sip.l

    r740 r974  
    7979                                if (ret != 1) {
    8080                                        /* No matching: an error occurred */
    81                                         fd_log_debug("Unable to convert the value '%s' to a valid number: %s\n", yytext, strerror(errno));
     81                                        fd_log_debug("Unable to convert the value '%s' to a valid number: %s", yytext, strerror(errno));
    8282                                        return LEX_ERROR; /* trig an error in yacc parser */
    8383                                        /* Maybe we could REJECT instead of failing here? */
     
    9191                                yylval->string = strdup(yytext+1);
    9292                                if (!yylval->string) {
    93                                         fd_log_debug("Unable to copy the string '%s': %s\n", yytext, strerror(errno));
     93                                        fd_log_debug("Unable to copy the string '%s': %s", yytext, strerror(errno));
    9494                                        TRACE_DEBUG(INFO, "strdup failed");
    9595                                        return LEX_ERROR; /* trig an error in yacc parser */
     
    156156        /* Unrecognized sequence, if it did not match any previous pattern */
    157157[^[:space:]"*=>;\n]+    {
    158                                 fd_log_debug("Unrecognized text on line %d col %d: '%s'.\n", yylloc->first_line, yylloc->first_column, yytext);
     158                                fd_log_debug("Unrecognized text on line %d col %d: '%s'.", yylloc->first_line, yylloc->first_column, yytext);
    159159                                return LEX_ERROR;
    160160                        }
  • extensions/app_sip/app_sip.y

    r740 r974  
    7272        if (app_sipin == NULL) {
    7373                ret = errno;
    74                 fd_log_debug("Unable to open extension configuration file %s for reading: %s\n", conffile, strerror(ret));
     74                fd_log_debug("Unable to open extension configuration file %s for reading: %s", conffile, strerror(ret));
    7575                TRACE_DEBUG (INFO, "Error occurred, message logged -- configuration file.");
    7676                return ret;
     
    9898       
    9999        if (ploc->first_line != ploc->last_line)
    100                 fd_log_debug("%s:%d.%d-%d.%d : %s\n", conffile, ploc->first_line, ploc->first_column, ploc->last_line, ploc->last_column, s);
     100                fd_log_debug("%s:%d.%d-%d.%d : %s", conffile, ploc->first_line, ploc->first_column, ploc->last_line, ploc->last_column, s);
    101101        else if (ploc->first_column != ploc->last_column)
    102                 fd_log_debug("%s:%d.%d-%d : %s\n", conffile, ploc->first_line, ploc->first_column, ploc->last_column, s);
     102                fd_log_debug("%s:%d.%d-%d : %s", conffile, ploc->first_line, ploc->first_column, ploc->last_column, s);
    103103        else
    104                 fd_log_debug("%s:%d.%d : %s\n", conffile, ploc->first_line, ploc->first_column, s);
     104                fd_log_debug("%s:%d.%d : %s", conffile, ploc->first_line, ploc->first_column, s);
    105105}
    106106
Note: See TracChangeset for help on using the changeset viewer.