summaryrefslogtreecommitdiffstats
path: root/usr.sbin/smtpd/table_api.c
diff options
context:
space:
mode:
authoreric <eric@openbsd.org>2013-10-26 12:27:58 +0000
committereric <eric@openbsd.org>2013-10-26 12:27:58 +0000
commitd7bcae4d6d4d5ecc8bada62c46fe63bb4ddc3d0c (patch)
tree6ce7e58eff257a711554f5d1b8843ce9f99f3886 /usr.sbin/smtpd/table_api.c
parentfix crash when using ProxyCommand caused by previous commit - was calling (diff)
downloadwireguard-openbsd-d7bcae4d6d4d5ecc8bada62c46fe63bb4ddc3d0c.tar.xz
wireguard-openbsd-d7bcae4d6d4d5ecc8bada62c46fe63bb4ddc3d0c.zip
%i -> %d in format strings
Diffstat (limited to 'usr.sbin/smtpd/table_api.c')
-rw-r--r--usr.sbin/smtpd/table_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/table_api.c b/usr.sbin/smtpd/table_api.c
index 93ba00ecc41..e2ad7339f2d 100644
--- a/usr.sbin/smtpd/table_api.c
+++ b/usr.sbin/smtpd/table_api.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: table_api.c,v 1.2 2013/07/20 09:06:46 eric Exp $ */
+/* $OpenBSD: table_api.c,v 1.3 2013/10/26 12:27:59 eric Exp $ */
/*
* Copyright (c) 2013 Eric Faurot <eric@openbsd.org>
@@ -199,7 +199,7 @@ table_msg_dispatch(void)
break;
default:
- log_warnx("warn: table-api: bad message %i", imsg.hdr.type);
+ log_warnx("warn: table-api: bad message %d", imsg.hdr.type);
fatalx("table-api: exiting");
}
}