_ prefix not required

This commit is contained in:
Andreas Steffen
2011-02-10 07:59:43 +01:00
parent fc83263403
commit 43c4a21bd9
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ METHOD(job_t, execute, void,
{
charon->traps->acquire(charon->traps, this->reqid,
this->src_ts, this->dst_ts);
_destroy(this);
destroy(this);
}
/*
@@ -70,7 +70,7 @@ METHOD(job_t, execute, void,
charon->ike_sa_manager->checkin(charon->ike_sa_manager, ike_sa);
}
_destroy(this);
destroy(this);
}
/*
@@ -89,7 +89,7 @@ METHOD(job_t, execute, void,
}
}
}
_destroy(this);
destroy(this);
}
/*
@@ -78,7 +78,7 @@ METHOD(job_t, execute, void,
children->destroy(children);
}
enumerator->destroy(enumerator);
free(this);
destroy(this);
}
/*