Navigation


Changeset 1120:c473581adff2 in freeDiameter for libfdcore/extensions.c


Ignore:
Timestamp:
May 14, 2013, 1:32:28 PM (11 years ago)
Author:
Sebastien Decugis <sdecugis@freediameter.net>
Branch:
default
Phase:
public
Message:

Cleanup some traces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libfdcore/extensions.c

    r1113 r1120  
    7878
    7979/* Dump the list */
    80 DECLARE_FD_DUMP_PROTOTYPE(fd_ext_dump)
     80DECLARE_FD_DUMP_PROTOTYPE(fd_ext_dump, int indent_next)
    8181{
    8282        struct fd_list * li;
     
    8686        {
    8787                struct fd_ext_info * ext = (struct fd_ext_info *)li;
    88                 CHECK_MALLOC_DO( fd_dump_extend( FD_DUMP_STD_PARAMS, "{extension}(@%p): '%s'[%s], %sloaded%s", ext, ext->filename, ext->conffile?:"no conf", ext->handler ? "" : "not ", (li->next == &ext_list) ? "":"\n"), return NULL);
     88                CHECK_MALLOC_DO( fd_dump_extend( FD_DUMP_STD_PARAMS, "%*s'%s'[%s], %sloaded%s", (li == ext_list.next) ? 0 : indent_next,"",
     89                                        ext->filename,
     90                                        ext->conffile?:"no conf",
     91                                        ext->handler ? "" : "not ", (li->next == &ext_list) ? "":"\n"), return NULL);
    8992        }
    9093        return *buf;
Note: See TracChangeset for help on using the changeset viewer.