From ae4a0b7c525e452bfe97e01c4ed264d8882a0a20 Mon Sep 17 00:00:00 2001 From: shin Date: Fri, 28 Jan 2000 20:06:15 +0000 Subject: Fix inconsistent debug output. (syslog -> warnx) Specified by: sheldonh Reviewed by: des --- usr.sbin/inetd/inetd.c | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) (limited to 'usr.sbin') diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c index f6e2ba2..05da830 100644 --- a/usr.sbin/inetd/inetd.c +++ b/usr.sbin/inetd/inetd.c @@ -1257,12 +1257,10 @@ ipsecsetup(sep) if (buf != NULL) { if (setsockopt(sep->se_fd, level, opt, buf, ipsec_get_policylen(buf)) < 0 && - debug != 0) { - syslog(LOG_ERR, - "%s/%s: ipsec initialization failed; %s", - sep->se_service, sep->se_proto, - policy_in); - } + debug != 0) + warnx("%s/%s: ipsec initialization failed; %s", + sep->se_service, sep->se_proto, + policy_in); free(buf); } else syslog(LOG_ERR, "invalid security policy \"%s\"", @@ -1273,12 +1271,10 @@ ipsecsetup(sep) if (buf != NULL) { if (setsockopt(sep->se_fd, level, opt, buf, ipsec_get_policylen(buf)) < 0 && - debug != 0) { - syslog(LOG_ERR, - "%s/%s: ipsec initialization failed; %s", - sep->se_service, sep->se_proto, - policy_out); - } + debug != 0) + warnx("%s/%s: ipsec initialization failed; %s", + sep->se_service, sep->se_proto, + policy_out); free(buf); } else syslog(LOG_ERR, "invalid security policy \"%s\"", -- cgit v1.1