Fixes for the Forwarding option.

This commit is contained in:
Guus Sliepen 2010-03-02 23:27:50 +01:00
parent 3e4829e78a
commit 8ae54dc7c7
2 changed files with 4 additions and 4 deletions

View file

@ -844,7 +844,7 @@ static void route_mac(node_t *source, vpn_packet_t *packet) {
}
void route(node_t *source, vpn_packet_t *packet) {
if(forwarding_mode == FMODE_KERNEL) {
if(forwarding_mode == FMODE_KERNEL && source != myself) {
send_packet(myself, packet);
return;
}