summaryrefslogtreecommitdiffstats
path: root/usr.sbin/rrenumd/rrenumd.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/rrenumd/rrenumd.c')
-rw-r--r--usr.sbin/rrenumd/rrenumd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rrenumd/rrenumd.c b/usr.sbin/rrenumd/rrenumd.c
index 9d150ac..fa3257d 100644
--- a/usr.sbin/rrenumd/rrenumd.c
+++ b/usr.sbin/rrenumd/rrenumd.c
@@ -293,7 +293,7 @@ sock6_open(struct flags *flags
char *buf;
buf = ipsec_set_policy(policy, strlen(policy));
if (buf == NULL)
- errx(1, ipsec_strerror());
+ errx(1, "%s", ipsec_strerror());
/* XXX should handle in/out bound policy. */
if (setsockopt(s6, IPPROTO_IPV6, IPV6_IPSEC_POLICY,
buf, ipsec_get_policylen(buf)) < 0)
@@ -359,7 +359,7 @@ sock4_open(struct flags *flags
char *buf;
buf = ipsec_set_policy(policy, strlen(policy));
if (buf == NULL)
- errx(1, ipsec_strerror());
+ errx(1, "%s", ipsec_strerror());
/* XXX should handle in/out bound policy. */
if (setsockopt(s4, IPPROTO_IP, IP_IPSEC_POLICY,
buf, ipsec_get_policylen(buf)) < 0)
OpenPOWER on IntegriCloud