Navigation



Ignore:
Timestamp:
Mar 24, 2014, 9:13:38 PM (10 years ago)
Author:
Thomas Klausner <tk@giga.or.at>
Branch:
default
Phase:
public
Message:

Remove whitespace at end of line.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/rt_redirect/rt_redir.c

    r740 r1259  
    4747{
    4848        TRACE_ENTRY("");
    49        
     49
    5050        /* Dictionary objects */
    5151        CHECK_FCT(  fd_dict_search( fd_g_config->cnf_dict, DICT_AVP, AVP_BY_NAME, "Destination-Realm", &redir_dict_dr, ENOENT)  );
     
    5454        /* Initialize the entries array */
    5555        CHECK_FCT( redir_entry_init() );
    56        
     56
    5757        /* Start the expire thread */
    5858        CHECK_POSIX( pthread_create( &exp_thr, NULL, redir_exp_thr_fct, NULL ) );
    59        
     59
    6060        /* Register the callback that receives the answers and processes when it contains a Redirect indication. */
    6161        CHECK_FCT( fd_rt_fwd_register ( redir_fwd_cb, NULL, RT_FWD_ANS, &fwd_hdl ) );
     
    7373{
    7474        int i;
    75        
     75
    7676        /* Unregister the callbacks */
    7777        if (fwd_hdl) {
     
    8181                CHECK_FCT_DO( fd_rt_out_unregister(out_hdl, NULL), );
    8282        }
    83        
     83
    8484        /* Stop the expiry thread */
    8585        CHECK_FCT_DO( fd_thr_term(&exp_thr), );
    86        
     86
    8787        /* Empty all entries */
    8888        CHECK_POSIX_DO( pthread_mutex_lock(&redir_exp_peer_lock),   );
     
    9898        }
    9999        CHECK_POSIX_DO( pthread_mutex_unlock(&redir_exp_peer_lock),   );
    100        
     100
    101101        return;
    102102}
Note: See TracChangeset for help on using the changeset viewer.