Skip to content

Commit

Permalink
vrrp: fix textual representation of YANG identities
Browse files Browse the repository at this point in the history
Signed-off-by: Renato Westphal <[email protected]>
  • Loading branch information
rwestphal committed Oct 18, 2024
1 parent d1e81ba commit 3c55f8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions holo-vrrp/src/northbound/yang.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ impl ToYang for State {
fn to_yang(&self) -> Cow<'static, str> {
match self {
State::Initialize => "ietf-vrrp:initialize".into(),
State::Backup => "ietf-vrrp::backup".into(),
State::Master => "ietf-vrrp::master".into(),
State::Backup => "ietf-vrrp:backup".into(),
State::Master => "ietf-vrrp:master".into(),
}
}
}
Expand Down

0 comments on commit 3c55f8b

Please sign in to comment.