-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pimd: make show ip mroute output consistent #8952
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your contribution to FRR!
Click for style suggestions
To apply these suggestions:
curl -s https://gist.githubusercontent.com/polychaeta/5632137f933ffe238a0575d8096e6b2e/raw/d64c1be034f15589620704b0c1b36d70105aa83e/cr_8952_1624993567.diff | git apply
diff --git a/pimd/pim_cmd.c b/pimd/pim_cmd.c
index bcc05fab3..98eab9b69 100644
--- a/pimd/pim_cmd.c
+++ b/pimd/pim_cmd.c
@@ -6445,8 +6445,8 @@ static void show_mroute(struct pim_instance *pim, struct vty *vty,
if (!uj && !found_oif) {
vty_out(vty,
"%-15s %-15s %-8s %-6s %-16s %-16s %-3d %8s\n",
- src_str, grp_str, "-", proto, in_ifname, "none", 0,
- "--:--:--");
+ src_str, grp_str, "-", proto, in_ifname, "none",
+ 0, "--:--:--");
}
}
If you are a new contributor to FRR, please see our contributing guidelines.
After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.
We had 3 different string output formats in various places. Make them all the same. Signed-off-by: Jafar Al-Gharaibeh <[email protected]>
Outdated results 💚Basic BGPD CI results: SUCCESS, 0 tests failed
For details, please contact louberger |
Continuous Integration Result: FAILEDContinuous Integration Result: FAILEDTest incomplete. See below for issues. This is a comment from an automated CI system. Get source / Pull Request: SuccessfulBuilding Stage: IncompleteUbuntu 18.04 arm7 build: Incomplete(check logs for details)Ubuntu 18.04 arm7 build: Incomplete(check logs for details)Ubuntu 18.04 ppc64le build: Incomplete(check logs for details)Ubuntu 18.04 arm7 build: Incomplete(check logs for details)Ubuntu 18.04 arm7 build: Incomplete(check logs for details)Ubuntu 18.04 ppc64le build: Incomplete(check logs for details)Ubuntu 16.04 arm8 build: Incomplete(check logs for details)Ubuntu 18.04 arm7 build: Incomplete(check logs for details)Ubuntu 18.04 arm7 build: Incomplete(check logs for details)Ubuntu 18.04 ppc64le build: Incomplete(check logs for details)Ubuntu 18.04 arm7 build: Incomplete(check logs for details)Ubuntu 18.04 arm7 build: Incomplete(check logs for details)Ubuntu 18.04 ppc64le build: Incomplete(check logs for details)Ubuntu 16.04 arm8 build: Incomplete(check logs for details)Ubuntu 16.04 arm7 build: Incomplete(check logs for details)Successful on other platforms/tests
|
Continuous Integration Result: FAILEDTest incomplete. See below for issues. This is a comment from an automated CI system. Get source / Pull Request: SuccessfulBuilding Stage: IncompleteUbuntu 18.04 ppc64le build: Incomplete(check logs for details)Successful on other platforms/tests
|
💚 Basic BGPD CI results: SUCCESS, 0 tests failedResults table
For details, please contact louberger |
@Mergifyio backport stable/8.0 |
Command
|
pimd: make show ip mroute output consistent (backport #8952)
We had 3 different string output formats in various places.
Make them all the same.
Signed-off-by: Jafar Al-Gharaibeh [email protected]