diff options
author | Martin Willi <martin@strongswan.org> | 2007-12-04 10:48:27 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2007-12-04 10:48:27 +0000 |
commit | 3895125275a2c0f49c7c9ad55f8d3ec8dd246926 (patch) | |
tree | 3fa1210457ede094cbb572add3fd15b02aeceb38 /src/charon/processing/jobs/mediation_job.c | |
parent | b8249ff5edde1607217efe189310eb820499e981 (diff) | |
download | strongswan-4.1.9.tar.bz2 strongswan-4.1.9.tar.xz |
removed c++ style comments4.1.9
fixed compiler warnings
Diffstat (limited to 'src/charon/processing/jobs/mediation_job.c')
-rw-r--r-- | src/charon/processing/jobs/mediation_job.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/charon/processing/jobs/mediation_job.c b/src/charon/processing/jobs/mediation_job.c index 6f5f74372..3b9d363d7 100644 --- a/src/charon/processing/jobs/mediation_job.c +++ b/src/charon/processing/jobs/mediation_job.c @@ -104,7 +104,7 @@ static void execute(private_mediation_job_t *this) { if (this->callback) { - // send callback to a peer + /* send callback to a peer */ if (target_sa->callback(target_sa, this->source) != SUCCESS) { DBG1(DBG_JOB, "callback for '%D' to '%D' failed", @@ -116,14 +116,14 @@ static void execute(private_mediation_job_t *this) } else { - // normal mediation between two peers + /* normal mediation between two peers */ if (target_sa->relay(target_sa, this->source, this->session_id, this->session_key, this->endpoints, this->response) != SUCCESS) { DBG1(DBG_JOB, "mediation between '%D' and '%D' failed", this->source, this->target); charon->ike_sa_manager->checkin(charon->ike_sa_manager, target_sa); - // FIXME: notify the initiator + /* FIXME: notify the initiator */ destroy(this); return; } |