Format string paranoia
This commit is contained in:
parent
c4dfae1d3c
commit
ffd4007070
@ -82,7 +82,7 @@ Fairwell(int sig)
|
|||||||
buf[16] = '0' + ((sig / 10) % 10);
|
buf[16] = '0' + ((sig / 10) % 10);
|
||||||
buf[17] = '0' + (sig % 10);
|
buf[17] = '0' + (sig % 10);
|
||||||
|
|
||||||
syslog(LOG_INFO, buf);
|
syslog(LOG_INFO, "%s", buf);
|
||||||
|
|
||||||
if (pidfile)
|
if (pidfile)
|
||||||
remove(pidfile);
|
remove(pidfile);
|
||||||
|
@ -471,7 +471,7 @@ main(argc, argv)
|
|||||||
if (policy_in != NULL) {
|
if (policy_in != NULL) {
|
||||||
buf = ipsec_set_policy(policy_in, strlen(policy_in));
|
buf = ipsec_set_policy(policy_in, strlen(policy_in));
|
||||||
if (buf == NULL)
|
if (buf == NULL)
|
||||||
errx(EX_CONFIG, ipsec_strerror());
|
errx(EX_CONFIG, "%s", ipsec_strerror());
|
||||||
if (setsockopt(s, IPPROTO_IP, IP_IPSEC_POLICY,
|
if (setsockopt(s, IPPROTO_IP, IP_IPSEC_POLICY,
|
||||||
buf, ipsec_get_policylen(buf)) < 0)
|
buf, ipsec_get_policylen(buf)) < 0)
|
||||||
err(EX_CONFIG, "ipsec policy cannot be configured");
|
err(EX_CONFIG, "ipsec policy cannot be configured");
|
||||||
@ -481,7 +481,7 @@ main(argc, argv)
|
|||||||
if (policy_out != NULL) {
|
if (policy_out != NULL) {
|
||||||
buf = ipsec_set_policy(policy_out, strlen(policy_out));
|
buf = ipsec_set_policy(policy_out, strlen(policy_out));
|
||||||
if (buf == NULL)
|
if (buf == NULL)
|
||||||
errx(EX_CONFIG, ipsec_strerror());
|
errx(EX_CONFIG, "%s", ipsec_strerror());
|
||||||
if (setsockopt(s, IPPROTO_IP, IP_IPSEC_POLICY,
|
if (setsockopt(s, IPPROTO_IP, IP_IPSEC_POLICY,
|
||||||
buf, ipsec_get_policylen(buf)) < 0)
|
buf, ipsec_get_policylen(buf)) < 0)
|
||||||
err(EX_CONFIG, "ipsec policy cannot be configured");
|
err(EX_CONFIG, "ipsec policy cannot be configured");
|
||||||
|
@ -293,7 +293,7 @@ sock6_open(struct flags *flags
|
|||||||
char *buf;
|
char *buf;
|
||||||
buf = ipsec_set_policy(policy, strlen(policy));
|
buf = ipsec_set_policy(policy, strlen(policy));
|
||||||
if (buf == NULL)
|
if (buf == NULL)
|
||||||
errx(1, ipsec_strerror());
|
errx(1, "%s", ipsec_strerror());
|
||||||
/* XXX should handle in/out bound policy. */
|
/* XXX should handle in/out bound policy. */
|
||||||
if (setsockopt(s6, IPPROTO_IPV6, IPV6_IPSEC_POLICY,
|
if (setsockopt(s6, IPPROTO_IPV6, IPV6_IPSEC_POLICY,
|
||||||
buf, ipsec_get_policylen(buf)) < 0)
|
buf, ipsec_get_policylen(buf)) < 0)
|
||||||
@ -359,7 +359,7 @@ sock4_open(struct flags *flags
|
|||||||
char *buf;
|
char *buf;
|
||||||
buf = ipsec_set_policy(policy, strlen(policy));
|
buf = ipsec_set_policy(policy, strlen(policy));
|
||||||
if (buf == NULL)
|
if (buf == NULL)
|
||||||
errx(1, ipsec_strerror());
|
errx(1, "%s", ipsec_strerror());
|
||||||
/* XXX should handle in/out bound policy. */
|
/* XXX should handle in/out bound policy. */
|
||||||
if (setsockopt(s4, IPPROTO_IP, IP_IPSEC_POLICY,
|
if (setsockopt(s4, IPPROTO_IP, IP_IPSEC_POLICY,
|
||||||
buf, ipsec_get_policylen(buf)) < 0)
|
buf, ipsec_get_policylen(buf)) < 0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user