From: Harlan Stenn Date: Mon, 1 Sep 2014 03:12:34 +0000 (+0000) Subject: [Bug 2536] ntpd sandboxing support (libseccomp2) cleanup X-Git-Tag: NTP_4_2_7P469~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3884d152064fb7e26f224a71885e1b6d80f10da5;p=thirdparty%2Fntp.git [Bug 2536] ntpd sandboxing support (libseccomp2) cleanup bk: 5403e4223rvOO_E1OTIt_tDIzoleZQ --- diff --git a/ChangeLog b/ChangeLog index f2c93922e..617c26b73 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,4 @@ +* [Bug 2536] ntpd sandboxing support (libseccomp2) cleanup. (4.2.7p468) 2014/08/31 Released by Harlan Stenn * [Bug 2556] ntpq man page cleanup. * autogen-5.18.4 diff --git a/ntpd/ntpd.c b/ntpd/ntpd.c index 137e12879..abe3ff76c 100644 --- a/ntpd/ntpd.c +++ b/ntpd/ntpd.c @@ -1012,7 +1012,7 @@ getgroup: if ((ctx = seccomp_init(SCMP_ACT_KILL)) < 0) msyslog(LOG_ERR, "%s: seccomp_init(SCMP_ACT_KILL) failed: %m", __func__); else { - DPRINTF(1, ("%s: seccomp_init(SCMP_ACT_KILL) succeeded\n", __func__)); + msyslog(LOG_DEBUG, "%s: seccomp_init(SCMP_ACT_KILL) succeeded", __func__); } #ifdef __x86_64__ @@ -1105,7 +1105,7 @@ int scmp_sc[] = { msyslog(LOG_ERR, "%s: seccomp_load() failed: %m", __func__); else { - DPRINTF(1, ("%s: libseccomp filter loaded.\n", __func__)); + msyslog(LOG_DEBUG, "%s: seccomp_load() succeeded", __func__); } #endif /* LIBSECCOMP */