X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=client_common.c;h=c25e88f8eda2b7480d9c9a5c4630647f58490847;hp=fdc9a5345a8358fc55c9641b7a123c59b22237dd;hb=80e46ec589d14be2fa4b0704f613a04ecb1b64c4;hpb=c8862b9e246b4ef6ff1fe103946e18cf2537ecde diff --git a/client_common.c b/client_common.c index fdc9a534..c25e88f8 100644 --- a/client_common.c +++ b/client_common.c @@ -195,7 +195,7 @@ static void client_post_select(struct sched *s, struct task *t) PARA_ERROR_LOG("received the following: %s\n", pcd->buf); return; } - PARA_INFO_LOG("%s", "<-- [challenge]\n"); + PARA_INFO_LOG("<-- [challenge]\n"); /* decrypt challenge number */ t->ret = para_decrypt_challenge(pcd->key_file, &pcd->challenge_nr, (unsigned char *) pcd->buf, 64); @@ -228,7 +228,7 @@ static void client_post_select(struct sched *s, struct task *t) pcd->status = CL_RECEIVED_PROCEED; if (bytes_received < PROCEED_MSG_LEN + 32) return; - PARA_INFO_LOG("%s", "decrypting session key\n"); + PARA_INFO_LOG("decrypting session key\n"); t->ret = para_decrypt_buffer(pcd->key_file, rc4_buf, (unsigned char *)pcd->buf + PROCEED_MSG_LEN + 1, bytes_received - PROCEED_MSG_LEN - 1);