From: Mark Wooding Date: Fri, 28 Jun 2013 19:27:42 +0000 (+0100) Subject: udpkey.c: Fix format-string error. X-Git-Tag: 1.0.1~7 X-Git-Url: https://git.distorted.org.uk/~mdw/udpkey/commitdiff_plain/46716e8f42305a5b622274ebe53bad13d3f54bab udpkey.c: Fix format-string error. --- diff --git a/udpkey.c b/udpkey.c index 3341ff5..d8845e1 100644 --- a/udpkey.c +++ b/udpkey.c @@ -364,7 +364,7 @@ found: else { tsz = atoi(q); if (tsz <= 0 || tsz%8 || tsz/8 > k->mc->hashsz) { - complain(LOG_ERR, "bad tag size for mac `%s' in key %s", + complain(LOG_ERR, "bad tag size `%s' for mac `%s' in key %s", q, k->mc->name, d.buf); goto fail; }