| Index: src/tcs/rpc/tcstp/rpc_admin.c
|
| diff --git a/src/tcs/rpc/tcstp/rpc_admin.c b/src/tcs/rpc/tcstp/rpc_admin.c
|
| index a42f6f38003d01c2f1af843e9c9ce3c7bbe198b0..4f357c3b41abbc8a6607f1cdb3b1ea075c4325ad 100644
|
| --- a/src/tcs/rpc/tcstp/rpc_admin.c
|
| +++ b/src/tcs/rpc/tcstp/rpc_admin.c
|
| @@ -37,7 +37,7 @@ tcs_wrap_PhysicalSetDeactivated(struct tcsd_thread_data *data)
|
| if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|
| - LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
|
| + LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
|
|
|
| if (getData(TCSD_PACKET_TYPE_BOOL, 1, &state, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
| @@ -64,7 +64,7 @@ tcs_wrap_DisableOwnerClear(struct tcsd_thread_data *data)
|
| if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|
| - LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
|
| + LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
|
|
|
| if (getData(TCSD_PACKET_TYPE_AUTH, 1, &auth, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
| @@ -96,7 +96,7 @@ tcs_wrap_ForceClear(struct tcsd_thread_data *data)
|
| if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|
| - LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
|
| + LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
|
|
|
| MUTEX_LOCK(tcsp_lock);
|
|
|
| @@ -119,7 +119,7 @@ tcs_wrap_DisableForceClear(struct tcsd_thread_data *data)
|
| if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|
| - LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
|
| + LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
|
|
|
| MUTEX_LOCK(tcsp_lock);
|
|
|
| @@ -142,7 +142,7 @@ tcs_wrap_PhysicalEnable(struct tcsd_thread_data *data)
|
| if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|
| - LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
|
| + LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
|
|
|
| MUTEX_LOCK(tcsp_lock);
|
|
|
| @@ -166,7 +166,7 @@ tcs_wrap_SetOwnerInstall(struct tcsd_thread_data *data)
|
| if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|
| - LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
|
| + LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
|
|
|
| if (getData(TCSD_PACKET_TYPE_BOOL, 1, &state, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
| @@ -194,7 +194,7 @@ tcs_wrap_OwnerSetDisable(struct tcsd_thread_data *data)
|
| if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|
| - LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
|
| + LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
|
|
|
| if (getData(TCSD_PACKET_TYPE_BOOL, 1, &disableState, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
| @@ -229,7 +229,7 @@ tcs_wrap_PhysicalDisable(struct tcsd_thread_data *data)
|
| if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|
| - LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
|
| + LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
|
|
|
| MUTEX_LOCK(tcsp_lock);
|
|
|
| @@ -253,7 +253,7 @@ tcs_wrap_PhysicalPresence(struct tcsd_thread_data *data)
|
| if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|
| - LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
|
| + LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
|
|
|
| if (getData(TCSD_PACKET_TYPE_UINT16, 1, &phyPresFlags, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
| @@ -279,7 +279,7 @@ tcs_wrap_SetTempDeactivated(struct tcsd_thread_data *data)
|
| if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|
| - LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
|
| + LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
|
|
|
| MUTEX_LOCK(tcsp_lock);
|
|
|
| @@ -307,7 +307,7 @@ tcs_wrap_SetTempDeactivated2(struct tcsd_thread_data *data)
|
| if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|
| - LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
|
| + LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
|
|
|
| if (getData(TCSD_PACKET_TYPE_AUTH, 1, &operatorAuth, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
| @@ -348,7 +348,7 @@ tcs_wrap_ResetLockValue(struct tcsd_thread_data *data)
|
| if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|
| - LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
|
| + LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
|
|
|
| if (getData(TCSD_PACKET_TYPE_AUTH, 1, &ownerAuth, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
| @@ -383,7 +383,7 @@ tcs_wrap_FlushSpecific(struct tcsd_thread_data *data)
|
| if (getData(TCSD_PACKET_TYPE_UINT32, 0, &hContext, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|
| - LogDebugFn("thread %zd context %x", THREAD_ID, hContext);
|
| + LogDebugFn("thread %ld context %x", THREAD_ID, hContext);
|
|
|
| if (getData(TCSD_PACKET_TYPE_UINT32, 1, &hResHandle, 0, &data->comm))
|
| return TCSERR(TSS_E_INTERNAL_ERROR);
|
|
|