From: Andreas Steffen Date: Sun, 25 Feb 2007 18:47:09 +0000 (-0000) Subject: changed ca info to ca X-Git-Tag: 4.0.7~14 X-Git-Url: https://git.strongswan.org/?p=strongswan.git;a=commitdiff_plain;h=f3f390eb7679df5aae58a1c314d3fb018680f424;ds=inline changed ca info to ca --- diff --git a/src/charon/threads/stroke_interface.c b/src/charon/threads/stroke_interface.c index 4faee3b..a4ae033 100755 --- a/src/charon/threads/stroke_interface.c +++ b/src/charon/threads/stroke_interface.c @@ -685,7 +685,7 @@ static void stroke_add_ca(stroke_msg_t *msg, FILE *out) pop_string(msg, &msg->add_ca.ocspuri); pop_string(msg, &msg->add_ca.ocspuri2); - DBG1(DBG_CFG, "received stroke: add ca info '%s'", msg->add_ca.name); + DBG1(DBG_CFG, "received stroke: add ca '%s'", msg->add_ca.name); DBG2(DBG_CFG, "ca %s", msg->add_ca.name); DBG2(DBG_CFG, " cacert=%s", msg->add_ca.cacert); @@ -745,18 +745,18 @@ static void stroke_del_ca(stroke_msg_t *msg, FILE *out) status_t status; pop_string(msg, &(msg->del_ca.name)); - DBG1(DBG_CFG, "received stroke: delete ca info '%s'", msg->del_ca.name); + DBG1(DBG_CFG, "received stroke: delete ca '%s'", msg->del_ca.name); status = charon->credentials->release_ca_info(charon->credentials, msg->del_ca.name); if (status == SUCCESS) { - fprintf(out, "deleted ca info '%s'\n", msg->del_ca.name); + fprintf(out, "deleted ca '%s'\n", msg->del_ca.name); } else { - fprintf(out, "no ca info named '%s'\n", msg->del_ca.name); + fprintf(out, "no ca named '%s'\n", msg->del_ca.name); } }