diff options
| author | Renato Westphal <renato@opensourcerouting.org> | 2020-03-06 16:16:02 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-06 16:16:02 -0300 |
| commit | 3c685e64ff0529cf5bf949dca0b63faf8b79ccb6 (patch) | |
| tree | 1f1d7fa1e9f47f3b7b3d312ed94685b84c781081 /pimd/pim_cmd.c | |
| parent | 9c37fcdddaee63dbd71d8dac1d5a54add74e2665 (diff) | |
| parent | 5e81f5dd1a2dd82ee6aa08f4a9375e4cd83407a0 (diff) | |
Merge pull request #5924 from donaldsharp/more_func
*: Finish off the __PRETTY_FUNCTION__ to __func__
Diffstat (limited to 'pimd/pim_cmd.c')
| -rw-r--r-- | pimd/pim_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_cmd.c b/pimd/pim_cmd.c index 85ce41ef35..a3e5151a78 100644 --- a/pimd/pim_cmd.c +++ b/pimd/pim_cmd.c @@ -3927,7 +3927,7 @@ static void clear_mroute(struct pim_instance *pim) /* clean up all upstreams*/ while ((up = rb_pim_upstream_first(&pim->upstream_head))) { - pim_upstream_del(pim, up, __PRETTY_FUNCTION__); + pim_upstream_del(pim, up, __func__); } } |
