diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-07-16 02:06:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-16 02:06:55 +0200 |
commit | 3eb15671ee08db71a92434593e38c4c741498944 (patch) | |
tree | 84f6dcd439a9fd6fe195d7f736ae9a418fd4d3d0 /bfdd/bfdd_nb_config.c | |
parent | Merge pull request #6746 from opensourcerouting/topotests-wtf (diff) | |
parent | isisd: fix OpenBSD pedantic format warnings (diff) | |
download | frr-3eb15671ee08db71a92434593e38c4c741498944.tar.xz frr-3eb15671ee08db71a92434593e38c4c741498944.zip |
Merge pull request #6731 from opensourcerouting/style-string-prep
*: string coding style
Diffstat (limited to 'bfdd/bfdd_nb_config.c')
-rw-r--r-- | bfdd/bfdd_nb_config.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bfdd/bfdd_nb_config.c b/bfdd/bfdd_nb_config.c index 915a2f641..970b5f2d6 100644 --- a/bfdd/bfdd_nb_config.c +++ b/bfdd/bfdd_nb_config.c @@ -85,8 +85,7 @@ static int bfd_session_create(enum nb_event event, const struct lyd_node *dnode, if (p.family == AF_INET6 && IN6_IS_ADDR_LINKLOCAL(&p.u.prefix6) && strlen(ifname) == 0) { zlog_warn( - "%s: when using link-local you must specify " - "an interface.", + "%s: when using link-local you must specify an interface.", __func__); return NB_ERR_VALIDATION; } |