From 491ec12e419be523dcfee5bef3a53f00969648fe Mon Sep 17 00:00:00 2001 From: Igor Ryzhov Date: Wed, 5 Aug 2015 18:28:38 +0300 Subject: [PATCH] daemon: fix missing parenthesis Signed-off-by: Igor Ryzhov --- src/daemon/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5