}
neighbors--;
if (neighbors == 0)
- setproctitle("no neighbor");
+ setproctitle("no neighbor.");
else if (neighbors == 1 && neighbor && *neighbor != '\0')
- setproctitle("connected to %s", neighbor);
+ setproctitle("connected to %s.", neighbor);
else
- setproctitle("%d neighbor%s", neighbors,
+ setproctitle("%d neighbor%s.", neighbors,
(neighbors > 1)?"s":"");
#endif
lldpd_display_neighbors(cfg);
struct dispatch_actions *a;
#ifdef ENABLE_PRIVSEP
- setproctitle("monitor");
+ setproctitle("monitor.");
#ifdef USE_SECCOMP
if (priv_seccomp_init(privileged, monitored) != 0)
fatal("privsep", "cannot continue without seccomp setup");