diff options
author | Tobias Brunner <tobias@strongswan.org> | 2007-07-19 14:12:19 +0000 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2007-07-19 14:12:19 +0000 |
commit | c019260e01af6f184c6396774e038cb35b5f53fc (patch) | |
tree | 024a61bea3c56ced73db117f2e5140cb01b9ff1c /src/charon/processing | |
parent | ac1557af518083c4198cacb5a4a7e4391555aa57 (diff) | |
download | strongswan-c019260e01af6f184c6396774e038cb35b5f53fc.tar.bz2 strongswan-c019260e01af6f184c6396774e038cb35b5f53fc.tar.xz |
backports from the p2p-nat-t branch:
* double assignment of function ''destroy'' in some jobs
* typos
Diffstat (limited to 'src/charon/processing')
-rw-r--r-- | src/charon/processing/jobs/roam_job.c | 1 | ||||
-rw-r--r-- | src/charon/processing/jobs/send_dpd_job.c | 1 | ||||
-rw-r--r-- | src/charon/processing/jobs/send_keepalive_job.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/src/charon/processing/jobs/roam_job.c b/src/charon/processing/jobs/roam_job.c index 3b5cd0ed2..842f57405 100644 --- a/src/charon/processing/jobs/roam_job.c +++ b/src/charon/processing/jobs/roam_job.c @@ -104,7 +104,6 @@ roam_job_t *roam_job_create(bool address) { private_roam_job_t *this = malloc_thing(private_roam_job_t); - this->public.job_interface.destroy = (void (*) (job_t *)) destroy; this->public.job_interface.execute = (void (*) (job_t *)) execute; this->public.job_interface.destroy = (void (*) (job_t *)) destroy; diff --git a/src/charon/processing/jobs/send_dpd_job.c b/src/charon/processing/jobs/send_dpd_job.c index f6786bfb4..d9c457ab6 100644 --- a/src/charon/processing/jobs/send_dpd_job.c +++ b/src/charon/processing/jobs/send_dpd_job.c @@ -86,7 +86,6 @@ send_dpd_job_t *send_dpd_job_create(ike_sa_id_t *ike_sa_id) private_send_dpd_job_t *this = malloc_thing(private_send_dpd_job_t); /* interface functions */ - this->public.job_interface.destroy = (void (*) (job_t *)) destroy; this->public.job_interface.execute = (void (*) (job_t *)) execute; this->public.job_interface.destroy = (void (*) (job_t *)) destroy; diff --git a/src/charon/processing/jobs/send_keepalive_job.c b/src/charon/processing/jobs/send_keepalive_job.c index 8cb51e5dd..34198deb0 100644 --- a/src/charon/processing/jobs/send_keepalive_job.c +++ b/src/charon/processing/jobs/send_keepalive_job.c @@ -80,7 +80,6 @@ send_keepalive_job_t *send_keepalive_job_create(ike_sa_id_t *ike_sa_id) private_send_keepalive_job_t *this = malloc_thing(private_send_keepalive_job_t); /* interface functions */ - this->public.job_interface.destroy = (void (*) (job_t *)) destroy; this->public.job_interface.execute = (void (*) (job_t *)) execute; this->public.job_interface.destroy = (void (*) (job_t *)) destroy; |