Changeset 340:81821e9f6988 in freeDiameter for freeDiameter/tests/testsess.c
- Timestamp:
- Jun 28, 2010, 11:20:48 AM (13 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
freeDiameter/tests/testsess.c
r258 r340 47 47 }; 48 48 49 static void mycleanup( char * sid, struct mystate * data)49 static void mycleanup( struct mystate * data, char * sid ) 50 50 { 51 51 /* sanity */ … … 268 268 CHECK( NULL, tms ); 269 269 270 mycleanup( str1, ms[0]);271 mycleanup( str1, ms[1]);270 mycleanup(ms[0], str1); 271 mycleanup(ms[1], str1); 272 272 273 273 /* Now create 6 states */ … … 350 350 CHECK( 0, fd_sess_state_retrieve( hdl1, sess1, &tms ) ); 351 351 CHECK( 0, fd_sess_getsid(sess1, &str1) ); 352 mycleanup( str1, tms);352 mycleanup(tms, str1); 353 353 } 354 354
Note: See TracChangeset
for help on using the changeset viewer.