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/jobs/send_keepalive_job.c | |
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/jobs/send_keepalive_job.c')
-rw-r--r-- | src/charon/processing/jobs/send_keepalive_job.c | 1 |
1 files changed, 0 insertions, 1 deletions
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; |