bgpd: Fixed typo in comment

Signed-off-by: Nigel Kukard <nkukard@lbsd.net>
This commit is contained in:
Nigel Kukard 2017-08-30 08:31:45 +00:00
parent cde8d696e0
commit 770817b408

View File

@ -1529,7 +1529,7 @@ static void *route_set_community_compile(const char *arg)
sp = strstr(arg, "additive"); sp = strstr(arg, "additive");
if (sp && sp > arg) { if (sp && sp > arg) {
/* "additive" keyworkd is included. */ /* "additive" keyword is included. */
additive = 1; additive = 1;
*(sp - 1) = '\0'; *(sp - 1) = '\0';
} }