Changeset 3515

Show
Ignore:
Timestamp:
05/20/08 11:41:44 (6 months ago)
Author:
ludovic.rousseau
Message:

C_Initialize(): log the value of the pInitArgs argument

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/pkcs11/pkcs11-spy.c

    r3513 r3515  
    278278} 
    279279 
     280static void print_ptr_in(const char *name, CK_VOID_PTR ptr) 
     281{ 
     282  fprintf(spy_output, "[in] %s[%p]: \n", name, ptr); 
     283} 
     284 
    280285CK_RV C_GetFunctionList 
    281286(CK_FUNCTION_LIST_PTR_PTR ppFunctionList) 
     
    303308 
    304309  enter("C_Initialize"); 
     310  print_ptr_in("pInitArgs", pInitArgs); 
    305311  rv = po->C_Initialize(pInitArgs); 
    306312  return retne(rv);