diff options
author | Donald Sharp <sharpd@cumulusnetwroks.com> | 2016-07-16 14:23:22 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-12-22 02:26:02 +0100 |
commit | 7f0c1c5fddb665b8c1315908213843cf2da1ae1e (patch) | |
tree | 847c7678e1ca137bbfecbfc25d11fc8672e608ce /pimd/pim_pim.c | |
parent | pimd: Refactor pim message type to an enum (diff) | |
download | frr-7f0c1c5fddb665b8c1315908213843cf2da1ae1e.tar.xz frr-7f0c1c5fddb665b8c1315908213843cf2da1ae1e.zip |
pimd: change string to JOINPRUNE
Change the JP message string to JOINPRUNE.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_pim.c')
-rw-r--r-- | pimd/pim_pim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_pim.c b/pimd/pim_pim.c index b3e4eddc2..6b8478424 100644 --- a/pimd/pim_pim.c +++ b/pimd/pim_pim.c @@ -54,7 +54,7 @@ const char *pim_pim_msgtype2str (enum pim_msg_type type) case PIM_MSG_TYPE_HELLO: return "HELLO"; case PIM_MSG_TYPE_REGISTER: return "REGISTER"; case PIM_MSG_TYPE_REG_STOP: return "REGSTOP"; - case PIM_MSG_TYPE_JOIN_PRUNE: return "JP"; + case PIM_MSG_TYPE_JOIN_PRUNE: return "JOINPRUNE"; case PIM_MSG_TYPE_BOOTSTRAP: return "BOOT"; case PIM_MSG_TYPE_ASSERT: return "ASSERT"; case PIM_MSG_TYPE_GRAFT: return "GRAFT"; |