Changeset f2520b5 for lib


Ignore:
Timestamp:
2010-08-20T08:22:28Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
801b90b
Parents:
80175a1
Message:

In debugging mode, dump all SOAP requests + responses with some indentation
for easier debugging.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/xmltree.c

    r80175a1 rf2520b5  
    331331        /* Indentation */
    332332        for( c = node; c->parent; c = c->parent )
    333                 printf( "\t" );
     333                printf( "    " );
    334334       
    335335        /* Start the tag */
     
    369369        if( node->children )
    370370                for( c = node; c->parent; c = c->parent )
    371                         printf( "\t" );
     371                        printf( "    " );
    372372       
    373373        /* Non-empty tag is now finished. */
Note: See TracChangeset for help on using the changeset viewer.