From: Igor Ryzhov Date: Wed, 5 Aug 2015 15:28:38 +0000 (+0300) Subject: daemon: fix missing parenthesis X-Git-Tag: 0.7.16~3^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=491ec12e419be523dcfee5bef3a53f00969648fe;p=thirdparty%2Flldpd.git daemon: fix missing parenthesis Signed-off-by: Igor Ryzhov --- diff --git a/src/daemon/client.c b/src/daemon/client.c index 9810e2e0..af5a6c9a 100644 --- a/src/daemon/client.c +++ b/src/daemon/client.c @@ -145,7 +145,7 @@ client_handle_set_configuration(struct lldpd *cfg, enum hmsg_type *type, } if (CHANGED_STR(c_hostname)) { log_debug("rpc", "change system name to %s", - config->c_hostname?config->c_hostname:"(NULL"); + config->c_hostname?config->c_hostname:"(NULL)"); free(cfg->g_config.c_hostname); cfg->g_config.c_hostname = xstrdup(config->c_hostname); levent_update_now(cfg);