Navigation


Changeset 1220:cec3e9b579e1 in freeDiameter


Ignore:
Timestamp:
Jun 20, 2013, 3:31:49 PM (11 years ago)
Author:
Sebastien Decugis <sdecugis@freediameter.net>
Branch:
default
Phase:
public
Message:

Cleanup parameter that has become useless

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • extensions/dbg_monitor/dbg_monitor.c

    r1127 r1220  
    143143        TRACE_DEBUG(INFO, "%s", fd_conf_dump(&buf, &len, NULL));
    144144        TRACE_DEBUG(INFO, "[dbg_monitor] Dumping extensions information");
    145         TRACE_DEBUG(INFO, "%s", fd_ext_dump(&buf, &len, NULL, 0));
     145        TRACE_DEBUG(INFO, "%s", fd_ext_dump(&buf, &len, NULL));
    146146        TRACE_DEBUG(INFO, "[dbg_monitor] Dumping dictionary information");
    147147        TRACE_DEBUG(INFO, "%s", fd_dict_dump(&buf, &len, NULL, fd_g_config->cnf_dict));
  • include/freeDiameter/libfdcore.h

    r1216 r1220  
    831831/* The "old" FD_EV_DUMP_* events are replaced with direct calls to the following dump functions */
    832832DECLARE_FD_DUMP_PROTOTYPE(fd_conf_dump);
     833
     834DECLARE_FD_DUMP_PROTOTYPE(fd_ext_dump);
    833835#else /* SWIG */
    834836DECLARE_FD_DUMP_PROTOTYPE_simple(fd_event_trig_dump);
    835837DECLARE_FD_DUMP_PROTOTYPE_simple(fd_conf_dump);
     838DECLARE_FD_DUMP_PROTOTYPE_simple(fd_ext_dump);
    836839#endif /* SWIG */
    837 DECLARE_FD_DUMP_PROTOTYPE(fd_ext_dump, int indent_next);
    838840DECLARE_FD_DUMP_PROTOTYPE(fd_servers_dump, int details);
    839841DECLARE_FD_DUMP_PROTOTYPE(fd_peer_dump_list, int details);
  • libfdcore/core.c

    r1190 r1220  
    256256       
    257257        /* Display extensions status */
    258         b = fd_ext_dump(&buf, &len, NULL, 19);
     258        b = fd_ext_dump(&buf, &len, NULL);
    259259        LOG_SPLIT(FD_LOG_NOTICE, "Loaded extensions: ", b?:"<Error during extensions dump...>", NULL);
    260260       
  • libfdcore/extensions.c

    r1218 r1220  
    7878
    7979/* Dump the list */
    80 DECLARE_FD_DUMP_PROTOTYPE(fd_ext_dump, int indent_next)
     80DECLARE_FD_DUMP_PROTOTYPE(fd_ext_dump)
    8181{
    8282        struct fd_list * li;
Note: See TracChangeset for help on using the changeset viewer.