From: jiehwan.park Date: Fri, 7 Dec 2018 07:52:43 +0000 (+0900) Subject: fix dlog format check error X-Git-Tag: accepted/tizen/5.5/unified/20191031.004255^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0eceaed7fb6618c4592d0ea9271a7be6ba919200;p=platform%2Fcore%2Fsystem%2Fsetup-adaptor.git fix dlog format check error Change-Id: I6bc844b58ea03145007d4e3ccc167f8f70685d5f Signed-off-by: jiehwan.park --- diff --git a/src/input_file.c b/src/input_file.c index 0f78afd..bb12458 100755 --- a/src/input_file.c +++ b/src/input_file.c @@ -206,15 +206,15 @@ static void print_config_network_static_info(sa_network_static_s * staticInfo) { if (staticInfo != NULL) { if (strlen(staticInfo->ipAddress) > 0) - _D("static::ipAddress[%s]"); + _D("static::ipAddress[%s]", staticInfo->ipAddress); if (strlen(staticInfo->netmask) > 0) - _D("static::netmask[%s]"); + _D("static::netmask[%s]", staticInfo->netmask); if (strlen(staticInfo->defaultGateway) > 0) - _D("static::defaultGateway[%s]"); + _D("static::defaultGateway[%s]", staticInfo->defaultGateway); if (strlen(staticInfo->primaryDnsServer) > 0) - _D("static::primaryDnsServer[%s]"); + _D("static::primaryDnsServer[%s]", staticInfo->primaryDnsServer); if (strlen(staticInfo->secondaryDnsServer) > 0) - _D("static::secondaryDnsServer[%s]"); + _D("static::secondaryDnsServer[%s]", staticInfo->secondaryDnsServer); } }