Skip to content

Commit

Permalink
ofproto: fix a typo for ttl in dpif_sflow_actions
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Zhang <martinbj2008@gmail.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
  • Loading branch information
martinbj2008 authored and blp committed Oct 7, 2019
1 parent 1f5c5d1 commit 3ff03ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ofproto/ofproto-dpif-sflow.c
Expand Up @@ -1014,7 +1014,7 @@ sflow_read_set_action(const struct nlattr *attr,
sflow_actions->tunnel.ip_tos = key->ipv4_tos;
}
if (key->ipv4_ttl) {
sflow_actions->tunnel.ip_tos = key->ipv4_ttl;
sflow_actions->tunnel.ip_ttl = key->ipv4_ttl;
}
}
break;
Expand Down

0 comments on commit 3ff03ff

Please sign in to comment.