Navigation


Changeset 1306:0d15dad33f0b in freeDiameter


Ignore:
Timestamp:
Jun 29, 2015, 4:37:35 PM (9 years ago)
Author:
Thomas Klausner <tk@giga.or.at>
Branch:
default
Phase:
public
Message:

Fix logic error when calling fd_msg_source_get().

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/dbg_msg_dumps/dbg_msg_dumps.c

    r1247 r1306  
    9393                if (msg) {
    9494                        DiamId_t id = NULL;
    95                         if (!fd_msg_source_get( msg, &id, NULL ))
     95                        if (fd_msg_source_get( msg, &id, NULL ))
    9696                                id = (DiamId_t)"<error getting source>";
    9797                        if (!id)
     
    183183                if (msg) {
    184184                        DiamId_t id = NULL;
    185                         if (!fd_msg_source_get( msg, &id, NULL ))
     185                        if (fd_msg_source_get( msg, &id, NULL ))
    186186                                id = (DiamId_t)"<error getting source>";
    187187                        if (!id)
     
    262262                if (msg) {
    263263                        DiamId_t id = NULL;
    264                         if (!fd_msg_source_get( msg, &id, NULL ))
     264                        if (fd_msg_source_get( msg, &id, NULL ))
    265265                                id = (DiamId_t)"<error getting source>";
    266266                        if (!id)
  • libfdcore/hooks.c

    r1245 r1306  
    360360                                if (msg) {
    361361                                        DiamId_t id = NULL;
    362                                         if (!fd_msg_source_get( msg, &id, NULL ))
     362                                        if (fd_msg_source_get( msg, &id, NULL ))
    363363                                                id = (DiamId_t)"<error getting source>";
    364364                                       
Note: See TracChangeset for help on using the changeset viewer.