Navigation


Changeset 950:51c15f98a965 in freeDiameter for libfdcore/fdd.y


Ignore:
Timestamp:
Feb 21, 2013, 7:57:32 PM (11 years ago)
Author:
Thomas Klausner <tk@giga.or.at>
Branch:
default
Parents:
949:ad5c976e0dc7 (diff), 924:877592751fee (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Phase:
public
Message:

merge current version from 1.1 branch (927:877592751fee).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libfdcore/fdd.y

    r944 r950  
    328328                                if (fd == NULL) {
    329329                                        int ret = errno;
    330                                         TRACE_DEBUG(INFO, "Unable to open extension file %s for reading: %s\n", fname, strerror(ret));
     330                                        TRACE_DEBUG_ERROR("Unable to open extension file %s for reading: %s\n", fname, strerror(ret));
    331331                                        yyerror (&yylloc, conf, "Error adding extension");
    332332                                        YYERROR;
     
    502502                                if (fd == NULL) {
    503503                                        int ret = errno;
    504                                         TRACE_DEBUG(INFO, "Unable to open certificate file %s for reading: %s\n", $3, strerror(ret));
     504                                        TRACE_DEBUG_ERROR("Unable to open certificate file %s for reading: %s\n", $3, strerror(ret));
    505505                                        yyerror (&yylloc, conf, "Error on file name");
    506506                                        YYERROR;
     
    510510                                if (fd == NULL) {
    511511                                        int ret = errno;
    512                                         TRACE_DEBUG(INFO, "Unable to open private key file %s for reading: %s\n", $5, strerror(ret));
     512                                        TRACE_DEBUG_ERROR("Unable to open private key file %s for reading: %s\n", $5, strerror(ret));
    513513                                        yyerror (&yylloc, conf, "Error on file name");
    514514                                        YYERROR;
     
    533533                                if (fd == NULL) {
    534534                                        int ret = errno;
    535                                         TRACE_DEBUG(INFO, "Unable to open CA file %s for reading: %s\n", $3, strerror(ret));
     535                                        TRACE_DEBUG_ERROR("Unable to open CA file %s for reading: %s\n", $3, strerror(ret));
    536536                                        yyerror (&yylloc, conf, "Error on file name");
    537537                                        YYERROR;
     
    573573                                if (fd == NULL) {
    574574                                        int ret = errno;
    575                                         TRACE_DEBUG(INFO, "Unable to open CRL file %s for reading: %s\n", $3, strerror(ret));
     575                                        TRACE_DEBUG_ERROR("Unable to open CRL file %s for reading: %s\n", $3, strerror(ret));
    576576                                        yyerror (&yylloc, conf, "Error on file name");
    577577                                        YYERROR;
     
    616616                                                        &err_pos),
    617617                                                { yyerror (&yylloc, conf, "Error setting Priority parameter.");
    618                                                   fprintf(stderr, "Error at position : %s\n", err_pos);
     618                                                  TRACE_DEBUG_ERROR("Error at position : %s\n", err_pos);
    619619                                                  YYERROR; } );
    620620                        }
     
    633633                                if (fd == NULL) {
    634634                                        int ret = errno;
    635                                         TRACE_DEBUG(INFO, "Unable to open DH file %s for reading: %s\n", $3, strerror(ret));
     635                                        TRACE_DEBUG_ERROR("Unable to open DH file %s for reading: %s\n", $3, strerror(ret));
    636636                                        yyerror (&yylloc, conf, "Error on file name");
    637637                                        YYERROR;
Note: See TracChangeset for help on using the changeset viewer.